Skip to content

Commit

Permalink
Update gotables.go
Browse files Browse the repository at this point in the history
  • Loading branch information
urban-wombat committed Feb 21, 2020
1 parent f38db84 commit 8e86191
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gotables.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 8e86191

Please sign in to comment.