Skip to content

Commit

Permalink
core/asm: correct comments typo (ethereum#16974)
Browse files Browse the repository at this point in the history
* core/asm/compiler: correct comments typo

core/asm/compiler: correct comments typo

* Correct comments typo
  • Loading branch information
caesarchad authored and firmianavan committed Aug 28, 2018
1 parent dfc2ee3 commit 7b0d58b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/asm/compiler.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func NewCompiler(debug bool) *Compiler {
// the compiler.
//
// feed is the first pass in the compile stage as it
// collect the used labels in the program and keeps a
// collects the used labels in the program and keeps a
// program counter which is used to determine the locations
// of the jump dests. The labels can than be used in the
// second stage to push labels and determine the right
Expand Down Expand Up @@ -120,7 +120,7 @@ func (c *Compiler) next() token {
return token
}

// compile line compiles a single line instruction e.g.
// compileLine compiles a single line instruction e.g.
// "push 1", "jump @label".
func (c *Compiler) compileLine() error {
n := c.next()
Expand Down

0 comments on commit 7b0d58b

Please sign in to comment.