소스 검색

core/asm: correct comments typo (#16975)

core/asm/lexer: correct comments typo
Caesar Chad 7 년 전
부모
커밋
f04c0e341e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/asm/lexer.go

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