From 87e4b852537d023b380ba4e165fd577ce2087c1d Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Sat, 20 Jun 2015 11:13:38 -0400 Subject: [PATCH] remove underscore variable name in section --- section.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/section.go b/section.go index cda8845..1c554a0 100644 --- a/section.go +++ b/section.go @@ -216,11 +216,11 @@ func (section *Section) Resolve(name string) (Value, error) { return value, errors.New("Trying to resolve value from non-section") } - next_current, err := current.(*Section).Get(part) + nextCurrent, err := current.(*Section).Get(part) if err != nil { return value, errors.New("Could not find value in section") } - current = next_current + current = nextCurrent } return current, nil }