mention control characters in Text doc

This commit is contained in:
faiface 2017-05-09 16:36:59 +02:00
parent ee6871c7b8
commit ef5de4c8c3
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@ func RangeTable(table *unicode.RangeTable) []rune {
// text to it is really simple: // text to it is really simple:
// fmt.Print(txt, "Hello, world!") // fmt.Print(txt, "Hello, world!")
// //
// Newlines, tabs and carriage returns are supported.
//
// Finally, if we want the written text to show up on some other Target, we can draw it: // Finally, if we want the written text to show up on some other Target, we can draw it:
// txt.Draw(target) // txt.Draw(target)
// //