Hello r (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
LGTM On Oct 9, 2011 5:03 PM, <adg@golang.org> wrote: > Reviewers: r, > > Message: > Hello r (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://go.googlecode.com/hg/ > > > Description: > doc: fix tutorial and Makefile PATH without dot > > Fixes issue 2351. > > Please review this at http://codereview.appspot.com/**5235056/<http://codereview.appspot.com/5235056/> > > Affected files: > M doc/Makefile > M doc/go_tutorial.html > M doc/go_tutorial.tmpl > > > Index: doc/Makefile > ==============================**==============================**======= > --- a/doc/Makefile > +++ b/doc/Makefile > @@ -9,10 +9,9 @@ > tmpltohtml.go\ > > go_tutorial.html: go_tutorial.tmpl tmpltohtml > - makehtml go_tutorial.tmpl > + ./makehtml go_tutorial.tmpl > > effective_go.html: effective_go.tmpl tmpltohtml > - makehtml effective_go.tmpl > - > + ./makehtml effective_go.tmpl > > include ../src/Make.cmd > Index: doc/go_tutorial.html > ==============================**==============================**======= > --- a/doc/go_tutorial.html > +++ b/doc/go_tutorial.html > @@ -104,7 +104,7 @@ > <p> > <pre> > $ gccgo helloworld.go > -$ a.out > +$ ./a.out > Hello, world; or Καλημέρα κόσμε; or こんにちは 世界 > $ > </pre> > @@ -706,7 +706,7 @@ > $ 6g file.go # compile file package > $ 6g helloworld3.go # compile main package > $ 6l -o helloworld3 helloworld3.6 # link - no need to mention "file" > -$ helloworld3 > +$ ./helloworld3 > hello, world > can't open file; err=No such file or directory > $ > Index: doc/go_tutorial.tmpl > ==============================**==============================**======= > --- a/doc/go_tutorial.tmpl > +++ b/doc/go_tutorial.tmpl > @@ -96,7 +96,7 @@ > <p> > <pre> > $ gccgo helloworld.go > -$ a.out > +$ ./a.out > Hello, world; or Καλημέρα κόσμε; or こんにちは 世界 > $ > </pre> > @@ -547,7 +547,7 @@ > $ 6g file.go # compile file package > $ 6g helloworld3.go # compile main package > $ 6l -o helloworld3 helloworld3.6 # link - no need to mention "file" > -$ helloworld3 > +$ ./helloworld3 > hello, world > can't open file; err=No such file or directory > $ > > >
*** Submitted as http://code.google.com/p/go/source/detail?r=60279075a700 *** doc: fix tutorial and Makefile PATH without dot Fixes issue 2351. R=r, bradfitz CC=golang-dev http://codereview.appspot.com/5235056