Hello golang-dev@googlegroups.com, I'd like you to review this change to https://go.googlecode.com/hg/
Actually, I think I saw him go into the A+C today.
LGTM On Wed, Feb 15, 2012 at 1:46 PM, <r@golang.org> wrote: > Reviewers: golang-dev_googlegroups.com, > > Message: > Hello golang-dev@googlegroups.com, > > I'd like you to review this change to > https://go.googlecode.com/hg/ > > > Description: > reflect: fix 3 semicolons that should be colons > Thanks to eag0628@gmail.com > > Please review this at http://codereview.appspot.com/**5674047/<http://codereview.appspot.com/5674047/> > > Affected files: > M src/pkg/reflect/type.go > > > Index: src/pkg/reflect/type.go > ==============================**==============================**======= > --- a/src/pkg/reflect/type.go > +++ b/src/pkg/reflect/type.go > @@ -561,7 +561,7 @@ > tt := (*sliceType)(unsafe.Pointer(t)**) > return toType(tt.elem) > } > - panic("reflect; Elem of invalid type") > + panic("reflect: Elem of invalid type") > } > > func (t *commonType) Field(i int) StructField { > @@ -630,7 +630,7 @@ > > func (t *commonType) NumIn() int { > if t.Kind() != Func { > - panic("reflect; NumIn of non-func type") > + panic("reflect: NumIn of non-func type") > } > tt := (*funcType)(unsafe.Pointer(t)) > return len(tt.in) > @@ -638,7 +638,7 @@ > > func (t *commonType) NumOut() int { > if t.Kind() != Func { > - panic("reflect; NumOut of non-func type") > + panic("reflect: NumOut of non-func type") > } > tt := (*funcType)(unsafe.Pointer(t)) > return len(tt.out) > > >
*** Abandoned ***