From a06387674983d93453b800380f6f55c6406f51e3 Mon Sep 17 00:00:00 2001 From: hydai Date: Wed, 14 Mar 2018 17:59:06 +0800 Subject: core/asm: fixed typo (labal -> label) (#16313) --- core/asm/compiler.go | 2 +- core/asm/lexer.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/asm/compiler.go b/core/asm/compiler.go index 318c4e4d8..1b9025a54 100644 --- a/core/asm/compiler.go +++ b/core/asm/compiler.go @@ -122,7 +122,7 @@ func (c *Compiler) next() token { } // compile line compiles a single line instruction e.g. -// "push 1", "jump @labal". +// "push 1", "jump @label". func (c *Compiler) compileLine() error { n := c.next() if n.typ != lineStart { diff --git a/core/asm/lexer.go b/core/asm/lexer.go index 405499950..4d62159e5 100644 --- a/core/asm/lexer.go +++ b/core/asm/lexer.go @@ -48,7 +48,7 @@ const ( lineEnd // emitted when a line ends invalidStatement // any invalid statement element // any element during element parsing - label // label is emitted when a labal is found + label // label is emitted when a label is found labelDef // label definition is emitted when a new label is found number // number is emitted when a number is found stringValue // stringValue is emitted when a string has been found -- cgit v1.2.3