From: Rob Pike Date: Mon, 30 Jul 2012 22:23:36 +0000 (-0700) Subject: text/template/parse/lex.go: fix typo X-Git-Tag: go1.1rc2~2738 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ad058cacfb63b697664c0781607c49d10650f9ef;p=gostls13.git text/template/parse/lex.go: fix typo R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6448081 --- diff --git a/src/pkg/text/template/parse/lex.go b/src/pkg/text/template/parse/lex.go index dcf30f12e7..1334b3033b 100644 --- a/src/pkg/text/template/parse/lex.go +++ b/src/pkg/text/template/parse/lex.go @@ -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. }