summaryrefslogtreecommitdiff
path: root/redo/table.go
diff options
context:
space:
mode:
Diffstat (limited to 'redo/table.go')
-rw-r--r--redo/table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/table.go b/redo/table.go
index 7a0e174..a9b5ada 100644
--- a/redo/table.go
+++ b/redo/table.go
@@ -9,7 +9,7 @@ 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.
-// As such, a Table renders a []struct{...} where each field of the struct can be a string, a number, [TODO an image, or a checkbox].
+// As such, a Table renders a []struct{...} where each field of the struct is rendered using package fmt's %v rule.
// Tables maintain their own storage behind a sync.RWMutex-compatible sync.Locker; use Table.Lock()/Table.Unlock() to make changes and Table.RLock()/Table.RUnlock() to merely read values.
// TODO headers
type Table interface {