diff options
author | Caesar Chad <BLUE.WEB.GEEK@gmail.com> | 2018-06-14 16:32:19 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-06-14 16:32:19 +0800 |
commit | f04c0e341ed355f12fbb2d6f912f36e9d869c21b (patch) | |
tree | 25a69f7d756eef5d4f522f47d44a691a5c14a344 | |
parent | ea89f40f0dab7957aa1825b56be80e84d3b04b5c (diff) | |
download | go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.tar go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.tar.gz go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.tar.bz2 go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.tar.lz go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.tar.xz go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.tar.zst go-tangerine-f04c0e341ed355f12fbb2d6f912f36e9d869c21b.zip |
core/asm: correct comments typo (#16975)
core/asm/lexer: correct comments typo
-rw-r--r-- | core/asm/lexer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/asm/lexer.go b/core/asm/lexer.go index 4d62159e5..91caeb27b 100644 --- a/core/asm/lexer.go +++ b/core/asm/lexer.go @@ -242,7 +242,7 @@ func lexLabel(l *lexer) stateFn { } // lexInsideString lexes the inside of a string until -// until the state function finds the closing quote. +// the state function finds the closing quote. // It returns the lex text state function. func lexInsideString(l *lexer) stateFn { if l.acceptRunUntil('"') { |