LGTM On Tue, Dec 6, 2011 at 6:25 AM, <mpimenov@google.com> wrote: > Reviewers: golang-dev_googlegroups.com, > > Description: > cgo: fix typo in the documentation > > Please review this at http://codereview.appspot.com/5448115/ > > Affected files: > M src/cmd/cgo/doc.go > > > Index: src/cmd/cgo/doc.go > =================================================================== > --- a/src/cmd/cgo/doc.go > +++ b/src/cmd/cgo/doc.go > @@ -93,7 +93,7 @@ > func MyFunction(arg1, arg2 int, arg3 string) int64 {...} > > //export MyFunction2 > - func MyFunction2(arg1, arg2 int, arg3 string) (int64, C.char*) {...} > + func MyFunction2(arg1, arg2 int, arg3 string) (int64, *C.char) {...} > > They will be available in the C code as: > > >
*** Submitted as http://code.google.com/p/go/source/detail?r=34228ce9a2e7 *** cgo: fix typo in the documentation R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/5448115 Committer: Robert Griesemer <gri@golang.org>