From 46122dd82637ba9993c27a15abb4d81de2eccf6f Mon Sep 17 00:00:00 2001 From: faiface Date: Tue, 9 May 2017 16:31:09 +0200 Subject: [PATCH] clarify doc --- text/text.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/text/text.go b/text/text.go index de7d317..02e7c61 100644 --- a/text/text.go +++ b/text/text.go @@ -91,7 +91,8 @@ type Text struct { } // New creates a new Text capable of drawing runes contained in the provided rune sets, plus -// unicode.ReplacementChar using the provided font.Face. +// unicode.ReplacementChar using the provided font.Face. New automatically generates an Atlas for +// the Text. // // Do not destroy or close the font.Face after creating a Text. Although Text caches most of the // stuff (pre-drawn glyphs, etc.), it still uses the face for a few things.