summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-08 16:37:15 -0400
committerPietro Gagliardi <[email protected]>2014-05-08 16:37:15 -0400
commit98ff761143a8cce0f658a3a9290664b7c7268f6d (patch)
treebe9d4bee4f62485276b272d01bc41d9b7b7e1796
parent0f5f1b583aeedc25f743f4032f872ec09aa193a6 (diff)
Fixed <tt> breakup in tableviewproposal.md.
-rw-r--r--tableviewproposal.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tableviewproposal.md b/tableviewproposal.md
index 846dae6..3f54784 100644
--- a/tableviewproposal.md
+++ b/tableviewproposal.md
@@ -20,7 +20,7 @@ type Person struct {
```
Data is displayed using the fmt package's %v rule. The structure must satisfy sync.Locker.
-<tt>If one of the members is of type slice of the structure type, then any element of the main slice with a Children whose length is nonzero represents child nodes. For example:
+<tt>If one of the members is of type slice of the structure type, then any element of the main slice with a Children whose length is nonzero represents child nodes. For example:</tt>
```go
type File struct {
Filename string
@@ -29,7 +29,7 @@ type File struct {
Contents []File
}
```
-In this case, File.Contents specifies children of the parent File.</tt>
+<tt>In this case, File.Contents specifies children of the parent File.</tt>
```go
func NewTableView(initData interface{}) *TableView