core/asm/lexer: correct comments typo

core/asm/lexer: correct comments typo
This commit is contained in:
Caesar Chad 2018-06-14 07:56:56 +08:00 committed by GitHub
parent ea89f40f0d
commit 60b162681b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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('"') {