summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2010-06-02doc: codereview + Mercurial QueuesPeter Williams2-4/+115
R=rsc, r CC=golang-dev http://codereview.appspot.com/1238044 Committer: Russ Cox <rsc@golang.org>
2010-06-01doc/code.html: fix error string formatAndrew Gerrand1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/1444041
2010-06-01edit simple typosJoe Poirier2-6/+6
R=golang-dev, adg CC=golang-dev, rsc http://codereview.appspot.com/1426042 Committer: Andrew Gerrand <adg@golang.org>
2010-05-30doc/code: example package with testsAndrew Gerrand1-0/+85
R=r CC=golang-dev http://codereview.appspot.com/1404041
2010-05-28go spec: change def. of "type compatibility" to be non-recursiveRobert Griesemer1-28/+38
and adjust conversion rules. Also: - clarification of type identity (no language change) - adjust special rules for channel assignment/comparison to require identical element types (in correspondence to non- recursiveness of type compatibility) R=rsc, iant, ken2, r CC=golang-dev http://codereview.appspot.com/1376042
2010-05-27go spec: Disallow &a notation to obtain a sliceRobert Griesemer1-7/+1
from an array; one needs to write a[0:] instead. R=rsc, r, iant, ken2 CC=golang-dev http://codereview.appspot.com/1365041
2010-05-27release.2010-05-27Andrew Gerrand1-0/+68
R=r, rsc CC=golang-dev http://codereview.appspot.com/1354041
2010-05-27golang.org: added Resources page, re-organized left hand panel.Andrew Gerrand1-0/+141
R=r CC=golang-dev http://codereview.appspot.com/1309045
2010-05-25spec: Fix link to fallthrough statementsEvan Shaw1-1/+1
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/1303041 Committer: Robert Griesemer <gri@golang.org>
2010-05-24go spec: minor fix, to match conversion rules 4 and 5Robert Griesemer1-1/+2
R=rsc CC=golang-dev http://codereview.appspot.com/1270042 Committer: Robert Griesemer <gri@golang.org>
2010-05-24go spec: fix and clarify syntax of conversionsRobert Griesemer1-6/+17
Fixes issue 803. R=rsc, r, iant, ken2 CC=golang-dev http://codereview.appspot.com/1281041
2010-05-24spec: index of non-addressable array is not addressableRuss Cox1-3/+4
Motivated by: func f() []int func g() [10]int f()[1] = 1 // ok g()[1] = 1 // ERROR R=gri CC=golang-dev http://codereview.appspot.com/1278041
2010-05-23spec: Fix a code tagEvan Shaw1-1/+1
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/1266042 Committer: Robert Griesemer <gri@golang.org>
2010-05-14go spec: added imaginary literal to semicolon rules (was missing)Robert Griesemer1-12/+34
- also added links to the respective sections - reformatted section for better (source html) readability - added missing closing </li>'s in many places R=r CC=golang-dev http://codereview.appspot.com/1220041
2010-05-13rename 'gordon' to 'gopher'Andrew Gerrand8-0/+0
R=r CC=golang-dev http://codereview.appspot.com/1207041
2010-05-07go spec: simplify section on channel typesRobert Griesemer1-20/+18
R=rsc, iant, r CC=golang-dev http://codereview.appspot.com/1171041
2010-05-07codelab/wiki: fix typo in demo URLAndrew Gerrand2-2/+2
R=r CC=golang-dev http://codereview.appspot.com/1148041
2010-05-05release.2010-05-04Andrew Gerrand1-0/+28
R=r, rsc CC=golang-dev http://codereview.appspot.com/1094043
2010-05-04go spec: clarification of make arguments,Robert Griesemer1-14/+17
specification of runtime exceptions for make and division by zero R=r, rsc, ken2, iant CC=golang-dev http://codereview.appspot.com/1081041
2010-05-03codelab/wiki: switch edit/view, as they were backwardsAndrew Gerrand3-10/+13
Fixes issue 757. R=rsc CC=golang-dev http://codereview.appspot.com/1064041
2010-04-29go spec: fix iota descriptionRobert Griesemer1-5/+4
R=r, rsc CC=golang-dev http://codereview.appspot.com/946046
2010-04-29codelab/index.html: a few typos.Andrey Mirtchovski1-3/+3
R=adg CC=golang-dev http://codereview.appspot.com/993042 Committer: Andrew Gerrand <adg@golang.org>
2010-04-29codelab/index.html "os" needs to be imported because os.Error is used almost ↵Andrey Mirtchovski1-3/+6
immediately Also, calling fmt, ioutil and os "builtin" is probably confusing. R=adg CC=golang-dev http://codereview.appspot.com/965045 Committer: Andrew Gerrand <adg@golang.org>
2010-04-28spec: clarify "continue" with label. the text was obvious in intent butRob Pike1-1/+4
inaccurate in meaning. R=gri CC=golang-dev http://codereview.appspot.com/964045
2010-04-28release.2010-04-27Andrew Gerrand1-0/+63
R=r, rsc CC=golang-dev http://codereview.appspot.com/963042
2010-04-28wiki codelab: typo fixAndrew Gerrand2-2/+2
noticed this as I was submitting the previous CL :( R=r CC=golang-dev http://codereview.appspot.com/989045
2010-04-28Wiki codelab, complete with tests.Andrew Gerrand21-0/+2513
R=r, rsc, gri CC=golang-dev http://codereview.appspot.com/887045
2010-04-27go spec: fix wrong commentRobert Griesemer1-1/+1
Fixes issue 743. R=r, rsc CC=golang-dev http://codereview.appspot.com/944044
2010-04-28go_tutorial: removed outdated use of semicolonsAndrew Gerrand2-44/+44
R=r CC=golang-dev http://codereview.appspot.com/1013042
2010-04-27homepage: removed animation, use custom js instead of gdynamicfeedsAndrew Gerrand2-13/+24
R=rsc CC=golang-dev http://codereview.appspot.com/949043
2010-04-26godoc: add codewalk supportRuss Cox5-1/+670
R=adg, gri CC=golang-dev, r http://codereview.appspot.com/1008042
2010-04-27doc/root.html: remove key from jsapi srcAndrew Gerrand1-1/+1
R=rsc, r CC=golang-dev http://codereview.appspot.com/1010041
2010-04-23go_faq: typo fixAndrew Gerrand1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/962043
2010-04-22spec: Fix run-time panic header idEvan Shaw1-1/+1
Everything was linking to "Run_time_panics", but the id was "Run_time_errors". R=golang-dev, r CC=golang-dev http://codereview.appspot.com/961042 Committer: Rob Pike <r@golang.org>
2010-04-22faq: more up-to-date info about the Windows portAndrew Gerrand1-2/+2
R=r CC=golang-dev http://codereview.appspot.com/961041 Committer: Andrew Gerrand <adg@golang.org>
2010-04-21go_faq: add question: Why does Go perform badly on benchmark X?Andrew Gerrand1-1/+35
R=r, cw CC=golang-dev http://codereview.appspot.com/895043 Committer: Andrew Gerrand <adg@golang.org>
2010-04-13go_spec updatesRuss Cox1-5/+5
R=r, iant CC=golang-dev http://codereview.appspot.com/921041
2010-04-14release.2010-04-13Andrew Gerrand1-0/+36
R=rsc, r CC=golang-dev http://codereview.appspot.com/902045
2010-04-13Use the copy function rather than a loop.Ian Lance Taylor1-4/+2
R=r CC=golang-dev http://codereview.appspot.com/882047
2010-04-09Update roadmap: delete many accomplishmentsRob Pike1-22/+1
R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/854045
2010-04-08gp_spec typo fix: code example in the "Handling panics" sectionJoe Poirier1-1/+1
R=rsc, adg CC=golang-dev http://codereview.appspot.com/881047 Committer: Andrew Gerrand <adg@golang.org>
2010-04-07Language FAQ: editing tweaks after iant.Rob Pike1-3/+3
R=iant CC=golang-dev http://codereview.appspot.com/874043
2010-04-07Language FAQ: update the entry on exceptions.Rob Pike1-14/+13
R=rsc, iant CC=golang-dev http://codereview.appspot.com/824045
2010-04-06doc/go_mem: remove semicolonsDavid Symonds1-47/+47
R=adg CC=golang-dev http://codereview.appspot.com/893041 Committer: Andrew Gerrand <adg@golang.org>
2010-04-05programming_faq: added question on T vs *T method setsAndrew Gerrand1-1/+37
Adding this question on Russ' recommendation - not sure if there is some detail here I'm missing. The associated discussion was: http://groups.google.com/group/golang-nuts/t/ec6b27e332ed7f77 R=rsc, r CC=golang-dev http://codereview.appspot.com/887042
2010-04-01go spec: correct clarification of type declarationRobert Griesemer1-6/+3
R=rsc, r CC=golang-dev http://codereview.appspot.com/855043 Committer: Robert Griesemer <gri@golang.org>
2010-03-31go spec: clarification of type declarationsRobert Griesemer1-2/+8
R=r, rsc CC=golang-dev http://codereview.appspot.com/849044
2010-03-31release 2010-03-30Andrew Gerrand1-0/+62
R=rsc, gri CC=golang-dev http://codereview.appspot.com/821045
2010-03-30godoc: support for title and subtitle headers when serving .html docsRobert Griesemer2-1/+7
and use it to show version (date) of go spec Fixes issue 68. R=rsc CC=golang-dev, r http://codereview.appspot.com/848042
2010-03-30Effective Go: update maps description regarding lookup of nonexistent entry.Rob Pike1-5/+20
R=rsc, gri, iant CC=golang-dev http://codereview.appspot.com/821044