From 7be170c04221749b61f34f562f69370c8f92d7c0 Mon Sep 17 00:00:00 2001 From: Jeremy Saenz Date: Tue, 3 Dec 2013 19:24:30 -0800 Subject: [PATCH] Added godoc for Float64 --- context.go | 1 + 1 file changed, 1 insertion(+) diff --git a/context.go b/context.go index cfa18f9..563f324 100644 --- a/context.go +++ b/context.go @@ -27,6 +27,7 @@ func (c *Context) Int(name string) int { return lookupInt(name, c.flagSet) } +// Looks up the value of a local float64 flag, returns 0 if no int flag exists func (c *Context) Float64(name string) float64 { return lookupFloat64(name, c.flagSet) }