From ce737fe01e079ba387f5e3a7416f422efe8f076f Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Thu, 5 Dec 2013 06:32:54 -0800 Subject: [PATCH] Fix typo in godoc for Float64 --- context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context.go b/context.go index 563f324..08fa59a 100644 --- a/context.go +++ b/context.go @@ -27,7 +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 +// Looks up the value of a local float64 flag, returns 0 if no float64 flag exists func (c *Context) Float64(name string) float64 { return lookupFloat64(name, c.flagSet) }