From 24ca72c351d4e948187f096bd21c0b70ca26d769 Mon Sep 17 00:00:00 2001 From: COsorio11 Date: Tue, 17 Oct 2017 10:11:56 -0700 Subject: [PATCH] fix typo begining to beginning --- json/scanner/scanner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json/scanner/scanner.go b/json/scanner/scanner.go index dd5c72bb..fe3f0f09 100644 --- a/json/scanner/scanner.go +++ b/json/scanner/scanner.go @@ -246,7 +246,7 @@ func (s *Scanner) scanNumber(ch rune) token.Type { return token.NUMBER } -// scanMantissa scans the mantissa begining from the rune. It returns the next +// scanMantissa scans the mantissa beginning from the rune. It returns the next // non decimal rune. It's used to determine wheter it's a fraction or exponent. func (s *Scanner) scanMantissa(ch rune) rune { scanned := false