From ef9d46bd9f95fa8e494693306802da6f6e23ca46 Mon Sep 17 00:00:00 2001 From: Guobiao Mei Date: Thu, 11 Feb 2016 21:55:49 -0500 Subject: [PATCH] Update doc.go Fix godoc comment so that the example there compiles. --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index b80e464..af24578 100644 --- a/doc.go +++ b/doc.go @@ -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) }