Explorar el Código

core/asm: correct comments typo (#16975)

core/asm/lexer: correct comments typo
Caesar Chad hace 7 años
padre
commit
f04c0e341e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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('"') {