From 8e86191ba71e00612b64c465697307db9282f174 Mon Sep 17 00:00:00 2001 From: Malcolm Gorman Date: Fri, 21 Feb 2020 16:33:26 +1100 Subject: [PATCH] Update gotables.go --- gotables.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gotables.go b/gotables.go index 36b2518..b3eb816 100644 --- a/gotables.go +++ b/gotables.go @@ -478,13 +478,13 @@ type tableRow []interface{} // Note: Reimplement this as a slice of byte for each row and a master map and/or slice to track offset. /* - Factory function to create an empty *Table that is not yet ready to use. + Factory function to create an empty *Table that is not yet ready to use - The table is for use as zero value, a *Table that is a placeholder without being a Go nil. + The table is for use as zero value, a *Table that is a placeholder without being a Go nil To make it usable, give it a table name: table.SetTableName("MyTableName") - In its unusable NilTable state, table.IsValidTable() will return false. + In its unusable NilTable state, table.IsValidTable() will return false var myTable *gotables.Table = gotables.NewNilTable()