Update doc.go

Fix godoc comment so that the example there compiles.
This commit is contained in:
Guobiao Mei 2016-02-11 21:55:49 -05:00
parent 08a5d3f67b
commit ef9d46bd9f
1 changed files with 1 additions and 1 deletions

2
doc.go
View File

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