aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/asm/internal/lex/stack.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/asm/internal/lex/stack.go')
-rw-r--r--src/cmd/asm/internal/lex/stack.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/asm/internal/lex/stack.go b/src/cmd/asm/internal/lex/stack.go
index acd44012bf..5e3b7beefb 100644
--- a/src/cmd/asm/internal/lex/stack.go
+++ b/src/cmd/asm/internal/lex/stack.go
@@ -12,7 +12,7 @@ type Stack struct {
tr []TokenReader
}
-// Push adds tr to the top (ehd) of the input stack. (Popping happens automatically.)
+// Push adds tr to the top (end) of the input stack. (Popping happens automatically.)
func (s *Stack) Push(tr TokenReader) {
s.tr = append(s.tr, tr)
}