From e3268db31e37661cdd5411a0f5306175fdbb738b Mon Sep 17 00:00:00 2001 From: faiface Date: Tue, 9 May 2017 16:36:59 +0200 Subject: [PATCH] mention control characters in Text doc --- text/text.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/text/text.go b/text/text.go index b928010..e01356e 100644 --- a/text/text.go +++ b/text/text.go @@ -53,6 +53,8 @@ func RangeTable(table *unicode.RangeTable) []rune { // text to it is really simple: // 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: // txt.Draw(target) //