text/template/parse/lex.go: fix typo

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/6448081
This commit is contained in:
Rob Pike 2012-07-30 15:23:36 -07:00
parent 36fe436cba
commit ad058cacfb
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ type lexer struct {
pos int // current position in the input.
start int // start position of this item.
width int // width of last rune read from input.
lastPos int // position of nost recent item returned by nextItem
lastPos int // position of most recent item returned by nextItem
items chan item // channel of scanned items.
}