summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-02-20 00:19:11 -0500
committerPietro Gagliardi <[email protected]>2015-02-20 00:19:11 -0500
commit87e5e3ed857e287419c71e41dc8394f4772c1462 (patch)
tree626b19831c7a2a4bfeb6d18e6bb26335c6771d35
parentc59d12d72daec1927d053f38842dd7f689e3b597 (diff)
Disambiguated icon sizing in Table documentation.
-rw-r--r--table.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/table.go b/table.go
index ec5bf83..0f0552f 100644
--- a/table.go
+++ b/table.go
@@ -10,7 +10,8 @@ import (
// Table is a Control that displays a list of like-structured data in a grid where each row represents an item and each column represents a bit of data.
// Tables store and render a slice of struct values.
-// Each field of the struct of type *image.RGBA is rendered as an icom.
+// Each field of the struct of type *image.RGBA is rendered as an icon.
+// The Table itself will resize the image to an icon size if needed; the original *image.RGBA will not be modified and the icon size is implementation-defined.
// Each field whose type is bool or equivalent to bool is rendered as a checkbox.
// All other fields are rendered as strings formatted with package fmt's %v format specifier.
//