summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2009-12-23go_spec: use PrimaryExpr as type switch expressionRuss Cox1-1/+1
Without this change, the spec parses <-c.(type) as (<-c).(type) but parses <-c.(int) as <-(c.(int)). With this change, the former parses as <-(c.(type)). All three parsers already implement this rule, because they look for the "type" word during parsing of a standard type assertion. This change merely brings the spec in line with the implementations. http://code.google.com/p/go/source/browse/src/cmd/gc/go.y#801 http://code.google.com/p/go/source/browse/src/pkg/go/parser/parser.go#900 http://gcc.gnu.org/viewcvs/branches/gccgo/gcc/go/parse.cc?revision=155389&view=markup#l2469 Pointed out by Brett Kail on golang-nuts. R=gri CC=golang-dev http://codereview.appspot.com/182044
2009-12-23fix documentation bug in exampleRob Pike1-1/+1
Fixes issue 452. R=gri CC=golang-dev, dougfelt http://codereview.appspot.com/181043
2009-12-17make it more explicit that design discussions should happen before code reviewsRob Pike2-2/+26
R=rsc CC=golang-dev http://codereview.appspot.com/180075
2009-12-16Add roadmap document.Ian Lance Taylor1-0/+105
Also adds Development heading on navbar, with Roadmap being the only current entry. R=r CC=golang-dev http://codereview.appspot.com/180069
2009-12-15doc/install.html: how to update to a new releaseRuss Cox1-0/+13
Fixes issue 422. R=r CC=golang-dev http://codereview.appspot.com/180057
2009-12-16new semicolon rule in effective_go.html.Rob Pike1-397/+412
eliminate all tab characters while we're here. R=rsc CC=golang-dev http://codereview.appspot.com/180055
2009-12-16update tutorial.Rob Pike18-386/+421
R=rsc CC=golang-dev http://codereview.appspot.com/179063
2009-12-14fix naked < as reported by pwil3058@gmail.comRob Pike2-2/+2
R=rsc CC=pwil3058 http://codereview.appspot.com/174087
2009-12-11Remove GOBIN in PATH dependency; don't assume cwd is $GOROOT/srcDevon H. O'Dell2-11/+10
This change removes the necessity to have GOBIN in $PATH, and also doesn't assume that the build is being run from $GOROOT/src. This is a minimal set of necessary changes to get Go to build happily from the FreeBSD ports collection. R=rsc CC=golang-dev http://codereview.appspot.com/171044 Committer: Russ Cox <rsc@golang.org>
2009-12-11Add a Makefile in place of all.bash. Update docs to reflectDevon H. O'Dell3-6/+6
this change. R=rsc CC=golang-dev http://codereview.appspot.com/171048 Committer: Russ Cox <rsc@golang.org>
2009-12-10Spec modified to reflect new semicolon rules.Robert Griesemer1-242/+273
R=rsc, r, iant, ken2 CC=golang-dev http://codereview.appspot.com/166066 Committer: Robert Griesemer <gri@golang.org>
2009-12-09doc/contribute: try to make it clearer that you send a review with hg mail, ↵Russ Cox1-2/+2
not hg submit. R=r http://codereview.appspot.com/171046
2009-12-09doc: split contribute.html into code.html and contribute.htmlRuss Cox2-216/+263
R=r http://codereview.appspot.com/170042
2009-12-04spec: document that built-ins cannot be used as func valuesRuss Cox1-0/+6
R=gri CC=golang-dev http://codereview.appspot.com/164088
2009-12-03faq: add question about translationRuss Cox1-0/+11
R=jini, r http://codereview.appspot.com/163092
2009-12-02change the naming example from Vector to Ring due to loss of vector.New()Rob Pike1-5/+5
R=rsc CC=golang-dev http://codereview.appspot.com/164082
2009-12-02Add copy to the list of predeclared functions.Ian Lance Taylor1-1/+1
R=gri http://codereview.appspot.com/164081
2009-12-01Integrated feedback by Ken.Robert Griesemer1-39/+37
Easy stuff in this round, more to come. R=iant, rsc, r, ken2 http://codereview.appspot.com/163058
2009-12-01some godoc cleanup:Robert Griesemer1-0/+1
- simplified dealing with parse errors: no need to intersperse them in the source - improve visibility of highlighted identifiers by showing them in bold R=rsc http://codereview.appspot.com/163051
2009-11-30Fix typo in specFazlul Shahriar1-1/+1
R=golang-dev, rsc http://codereview.appspot.com/164052 Committer: Russ Cox <rsc@golang.org>
2009-11-29Fix example Makefile to avoid $GOROOT in case it has spaces.Fumitoshi Ukai1-2/+5
R=rsc, sergio http://codereview.appspot.com/162058 Committer: Russ Cox <rsc@golang.org>
2009-11-24add freebsd to the list of os'es.Rob Pike1-8/+33
make the GOOS/GOARCH pair a table to avoid the confusion caused when it was of the form linux/386. R=rsc CC=golang-dev http://codereview.appspot.com/160061
2009-11-24change the rules for maintaining AUTHORS and CONTRIBUTORS files.Rob Pike1-11/+27
the current system is too painful, so instead let's just have the coders tell us the details. we can update the files ourselves. R=rsc, r1 CC=golang-dev http://codereview.appspot.com/157158
2009-11-24Mention golang-dev as a default code review destination.Ian Lance Taylor1-0/+4
R=rsc CC=r http://codereview.appspot.com/160056
2009-11-23add an FAQ entry about the logo and mascotRob Pike1-0/+15
R=rsc CC=golang-dev, reneefrench http://codereview.appspot.com/157144
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-1/+1
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-11-20mention arrays of arrays and slices of slicesRob Pike1-0/+11
Fixes issue 113. R=gri, rsc CC=golang-dev http://codereview.appspot.com/159049
2009-11-19build Make.deps during make.bash insteadRuss Cox1-0/+2
of keeping a checked-in copy. doesn't slow down make.bash appreciably. R=r http://codereview.appspot.com/156099
2009-11-18Allow optional second expression in slice expressions.Robert Griesemer1-12/+51
Built-in function copy. Addresses issue 203. R=rsc, r, iant http://codereview.appspot.com/156089
2009-11-18On 32-bit x86, one should configure with --with-arch=.Ian Lance Taylor1-3/+8
R=r http://codereview.appspot.com/156080
2009-11-18make all.bash finish on FreeBSDRuss Cox1-1/+1
R=dho CC=golang-dev http://codereview.appspot.com/156067
2009-11-17explain the situation with unicode and identifiersRob Pike1-0/+27
R=rsc CC=golang-dev http://codereview.appspot.com/156044
2009-11-16fix typo in Append return typeRob Pike1-1/+1
R=rsc http://codereview.appspot.com/155058
2009-11-16doc: fix typo.Adam Langley1-1/+1
Fixes issue 218 R=r CC=golang-dev http://codereview.appspot.com/155067 Committer: Rob Pike <r@golang.org>
2009-11-16- Clarify that struct composite literal keys are field names not selectors.Robert Griesemer1-19/+22
- Slight re-phrasing of struct type section since "field name" was not properly introduced. Fixes issue 164. R=r, rsc, iant http://codereview.appspot.com/155061
2009-11-15Use ElementType consistently.Robert Griesemer1-5/+4
Fixes issue 173. R=r, rsc, r1 http://codereview.appspot.com/154156
2009-11-15add a paragraph about GOMAXPROCSRob Pike1-0/+16
R=rsc CC=golang-dev http://codereview.appspot.com/154153
2009-11-15godocs.js: fix bad variable nameRuss Cox1-1/+1
Thanks to anno.langen. Fixes issue 103. R=r http://codereview.appspot.com/155050
2009-11-15fix some typos in the documentationRob Pike3-5/+5
Fixes issue 196. R=rsc http://codereview.appspot.com/154152
2009-11-15Use // to start comment instead of #.Robert Griesemer1-4/+4
Fixes issue 189. R=r CC=rsc http://codereview.appspot.com/155055
2009-11-13fix typoRob Pike1-1/+1
R=rsc http://codereview.appspot.com/152128
2009-11-12add a paragraph about semicolons to the tutorial.Rob Pike4-3/+25
fix a typo caught by kakugawa@gmail.com Fixes issue 92. R=rsc CC=golang-dev http://codereview.appspot.com/152105
2009-11-12fix a couple of typos.Rob Pike3-5/+37
add a mention of range to the tutorial. change tutorial's title. R=rsc CC=golang-dev http://codereview.appspot.com/152098
2009-11-11fix typo in ByteSize exampleRob Pike1-6/+6
R=rsc, agl1 CC=golang-dev http://codereview.appspot.com/154076
2009-11-11typoRuss Cox1-1/+1
Fixes issue 69. R=r http://codereview.appspot.com/152082
2009-11-11point at how to get easy_install on Ubuntu.Russ Cox1-2/+12
Fixes issue 59. Add note about export. R=r http://codereview.appspot.com/152079
2009-11-11add a paragraph in the FAQ about the situation with Windows supportRob Pike1-0/+12
R=rsc, iant CC=golang-dev http://codereview.appspot.com/154059
2009-11-11docs: list make as a build dep.Adam Langley1-4/+5
Fixes issue 45. R=rsc, r1 CC=golang-dev http://codereview.appspot.com/154055
2009-11-10install.html: ed needs to be installed tooRuss Cox1-2/+2
Fixes issue 14. R=r http://codereview.appspot.com/152052
2009-11-10fix final program to have Html->HTMLRob Pike1-2/+2
R=rsc CC=go-dev http://codereview.appspot.com/152050