summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.
//