summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2010-01-27Clarify parsing of channel types.Robert Griesemer1-1/+13
R=r, rsc CC=golang-dev http://codereview.appspot.com/194091
2010-01-26spec: allow func() func().Russ Cox1-18/+18
no longer ambiguous at top level, thanks to new semicolon rules. use gofmt layout for function types. Fixes issue 528. R=gri CC=golang-dev http://codereview.appspot.com/194077
2010-01-25Remove top-level (src/) Makefile.Christopher Wedgwood1-2/+2
R=rsc, dho, r CC=golang-dev http://codereview.appspot.com/194045 Committer: Russ Cox <rsc@golang.org>
2010-01-25list awk in the dependencies needed for installationRob Pike1-2/+2
(it is installed by apt-get install gawk, I believe) Fixes issue 557. R=rsc CC=golang-dev http://codereview.appspot.com/194050
2010-01-25log.Fatal does not exist. Use log.Crash.Rob Pike1-2/+2
R=rsc CC=golang-dev http://codereview.appspot.com/193075
2010-01-18spec: mention Inf and NaN are supported at run time.Russ Cox1-1/+11
add hyperlink at mention of package reflect. Fixes issue 438. R=r CC=golang-dev http://codereview.appspot.com/190042
2010-01-15be more explicit about initialization of embedded fields.Rob Pike1-7/+17
R=rsc CC=golang-dev http://codereview.appspot.com/186161
2010-01-13doc/devel/release.html: fix dumb typoRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/186148
2010-01-13release.2010-01-13: final checkin, release notesRuss Cox1-0/+37
R=r CC=golang-dev http://codereview.appspot.com/186147
2010-01-13contribute.html: suggest hg mail instead of hg uploadRuss Cox1-3/+3
R=r CC=golang-dev http://codereview.appspot.com/186145
2010-01-13create doc/talks/.Russ Cox5-0/+3460
move talk-20091030 down. add talk given at Stanford 2010/01/12. add doc/go-logo-white.png. R=r CC=golang-dev http://codereview.appspot.com/186132 Committer: Russ Cox <rsc@golang.org>
2010-01-13Clarify when expressions are evaluated for a range clause.Ian Lance Taylor1-1/+6
R=gri, rsc CC=golang-dev http://codereview.appspot.com/189057
2010-01-13fix typo found by kevin ballardRob Pike1-1/+1
R=gri CC=golang-dev http://codereview.appspot.com/186113
2010-01-11doc/contribute.html: change copyright yearBill Neubauer1-1/+1
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/184055 Committer: Russ Cox <rsc@golang.org>
2010-01-09fix typoRob Pike1-1/+1
R=gri, iant CC=golang-dev http://codereview.appspot.com/183160
2010-01-07add doc/devel/index.html, linked from nav barRuss Cox1-0/+7
R=r CC=golang-dev http://codereview.appspot.com/181156
2010-01-06add release log as doc/devel/release.htmlRuss Cox1-0/+149
won't appear online until next release R=r CC=golang-dev http://codereview.appspot.com/183126
2010-01-04remove reference to "basic literal" since it's never definedRobert Griesemer1-1/+2
R=rsc, r CC=golang-dev http://codereview.appspot.com/183113
2010-01-04fix up YB and add ZB, EB in exampleRob Pike1-0/+6
R=rsc CC=golang-dev http://codereview.appspot.com/183107
2009-12-29Document how to build gccgo to use gold.Ian Lance Taylor1-5/+31
This provides full support for discontiguous stacks. R=r CC=golang-dev http://codereview.appspot.com/183088
2009-12-28Clarify section on tokens.Robert Griesemer1-3/+4
Fixes issue 457. R=r CC=golang-dev http://codereview.appspot.com/181083
2009-12-27add exceptions to the road map. i think this just was an oversight.Rob Pike1-0/+5
also a way to run code when object is deleted. both of these are possibilities, not certainties. R=rsc, iant CC=golang-dev http://codereview.appspot.com/181057
2009-12-25fix naked < and > as reported by Peter Williams <>Rob Pike1-40/+40
(i thought these were legal in <pre> blocks) R=rsc CC=golang-dev, pwil3058 http://codereview.appspot.com/181055
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