Merge pull request #84 from guobiao/patch-1

Update doc.go
This commit is contained in:
Zack Guo 2016-03-09 19:49:22 -05:00
commit ed6d626aad

2
doc.go
View File

@ -19,7 +19,7 @@ A simplest example:
g := ui.NewGauge() g := ui.NewGauge()
g.Percent = 50 g.Percent = 50
g.Width = 50 g.Width = 50
g.Border.Label = "Gauge" g.BorderLabel = "Gauge"
ui.Render(g) ui.Render(g)
} }