LGTM On Tue, Dec 22, 2009 at 6:46 PM, <r@golang.org> wrote: > Reviewers: gri, > ...
15 years, 4 months ago
(2009-12-23 02:47:19 UTC)
#2
LGTM
On Tue, Dec 22, 2009 at 6:46 PM, <r@golang.org> wrote:
> Reviewers: gri,
>
> Message:
> Hello gri (cc: golang-dev@googlegroups.com, dougfelt@google.com),
>
> I'd like you to review the following change.
>
>
> Description:
> fix documentation bug in example
> Fixes issue 452.
>
> Please review this at http://codereview.appspot.com/181043
>
> Affected files:
> M doc/effective_go.html
>
>
> Index: doc/effective_go.html
> ===================================================================
> --- a/doc/effective_go.html
> +++ b/doc/effective_go.html
> @@ -2217,7 +2217,7 @@
> <pre>
> type Vector []float64
>
> -// Apply the operation to n elements of v starting at i.
> +// Apply the operation to v[i], v[i+1] ... up to v[n-1].
> func (v Vector) DoSome(i, n int, u Vector, c chan int) {
> for ; i < n; i++ {
> v[i] += u.Op(v[i])
>
>
>
Issue 181043: code review 181043: fix documentation bug in example
(Closed)
Created 15 years, 4 months ago by r
Modified 15 years, 4 months ago
Reviewers:
Base URL:
Comments: 0