diff options
Diffstat (limited to 'internal/revision/scanner.go')
-rw-r--r-- | internal/revision/scanner.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/revision/scanner.go b/internal/revision/scanner.go index fb5f333..c46c21b 100644 --- a/internal/revision/scanner.go +++ b/internal/revision/scanner.go @@ -10,7 +10,7 @@ import ( // validates it belongs to a rune category type runeCategoryValidator func(r rune) bool -// tokenizeExpression aggegates a series of runes matching check predicate into a single +// tokenizeExpression aggregates a series of runes matching check predicate into a single // string and provides given tokenType as token type func tokenizeExpression(ch rune, tokenType token, check runeCategoryValidator, r *bufio.Reader) (token, string, error) { var data []rune |