LGTM On Jun 17, 2014 9:01 AM, <gri@golang.org> wrote: > Reviewers: golang-codereviews, > > Message: ...
10 years, 12 months ago
(2014-06-17 16:33:22 UTC)
#2
LGTM
On Jun 17, 2014 9:01 AM, <gri@golang.org> wrote:
> Reviewers: golang-codereviews,
>
> Message:
> Hello golang-codereviews@googlegroups.com,
>
> I'd like you to review this change to
> https://code.google.com/p/go/
>
>
> Description:
> text/scanner: fix comment
>
> Please review this at https://codereview.appspot.com/105300044/
>
> Affected files (+1, -1 lines):
> M src/pkg/text/scanner/scanner.go
>
>
> Index: src/pkg/text/scanner/scanner.go
> ===================================================================
> --- a/src/pkg/text/scanner/scanner.go
> +++ b/src/pkg/text/scanner/scanner.go
> @@ -347,7 +347,7 @@
> }
>
> func (s *Scanner) scanIdentifier() rune {
> - // we know the zero'th rune is OK; start with 2nd one
> + // we know the zero'th rune is OK; start scanning at the next one
> ch := s.next()
> for i := 1; s.isIdentRune(ch, i); i++ {
> ch = s.next()
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-codereviews" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-codereviews+unsubscribe@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
Issue 105300044: code review 105300044: text/scanner: fix comment
(Closed)
Created 10 years, 12 months ago by gri
Modified 10 years, 12 months ago
Reviewers:
Base URL:
Comments: 0