From a88de722b36b621786eeb1053da42b6f3a6eeeda Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 23 Dec 2015 01:16:18 -0500 Subject: [PATCH] Some terminology fixes. --- draw.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/draw.go b/draw.go index a8cded4..e02b1b1 100644 --- a/draw.go +++ b/draw.go @@ -501,11 +501,12 @@ func (c *DrawContext) Restore() { // FontFamilies represents an enumerator over the font families // available for use by package ui. A FontFamilies object behaves // similarly to a []string, except that since family names are loaded -// on demand (depending on the backend), it is not an actual []string. -// You call ListFontFamilies to obtain a FontFamilies object, which -// should reflect the available fonts at the time of the call. Use -// NumFamilies to get the number of families, and Family to get the -// name of a given family by index. When finished, call Free. +// on demand (depending on the operating system), it is not an +// actual []string. You call ListFontFamilies to obtain a FontFamilies +// object, which should reflect the available fonts at the time of the +// call (TODO verify). Use NumFamilies to get the number of families, +// and Family to get the name of a given family by index. When +// finished, call Free. // // There is no guarantee that the list of families is sorted. You will // need to do sorting yourself if you need it.