LGTM On Wed, Aug 7, 2013 at 7:39 PM, <r@golang.org> wrote: > Reviewers: golang-dev1, > ...
11 years, 7 months ago
(2013-08-08 02:40:08 UTC)
#2
LGTM
On Wed, Aug 7, 2013 at 7:39 PM, <r@golang.org> wrote:
> Reviewers: golang-dev1,
>
> Message:
> Hello golang-dev@googlegroups.com,
>
> I'd like you to review this change to
> https://code.google.com/p/go/
>
>
> Description:
> container/list: fix typo in comment
> Fixes issue 6058.
>
> Please review this at
https://codereview.appspot.**com/12643043/<https://codereview.appspot.com/126...
>
> Affected files:
> M src/pkg/container/list/list.go
>
>
> Index: src/pkg/container/list/list.go
> ==============================**==============================**=======
> --- a/src/pkg/container/list/list.**go
> +++ b/src/pkg/container/list/list.**go
> @@ -127,7 +127,7 @@
> return e.Value
> }
>
> -// Pushfront inserts a new element e with value v at the front of list l
> and returns e.
> +// PushFront inserts a new element e with value v at the front of list l
> and returns e.
> func (l *List) PushFront(v interface{}) *Element {
> l.lazyInit()
> return l.insertValue(v, &l.root)
>
>
> --
>
> ---You received this message because you are subscribed to the Google
> Groups "golang-dev" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
golang-dev+unsubscribe@**googlegroups.com<golang-dev%2Bunsubscribe@googlegrou...
> .
> For more options, visit
https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/o...
> .
>
Issue 12643043: code review 12643043: container/list: fix typo in comment
(Closed)
Created 11 years, 7 months ago by r
Modified 11 years, 7 months ago
Reviewers:
Base URL:
Comments: 0