From 493dc91ef2a3b9a70732772a85ebd42a54467ad7 Mon Sep 17 00:00:00 2001 From: COsorio11 Date: Tue, 17 Oct 2017 10:10:01 -0700 Subject: [PATCH] Fix type begining to beginning --- hcl/scanner/scanner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hcl/scanner/scanner.go b/hcl/scanner/scanner.go index 6966236..6601ef7 100644 --- a/hcl/scanner/scanner.go +++ b/hcl/scanner/scanner.go @@ -351,7 +351,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