summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
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
2010-03-30single argument panicRuss Cox2-10/+12
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev http://codereview.appspot.com/850041
2010-03-29spec: typo in switch sample code, missing semicolonAndrew Gerrand1-1/+1
Fixes issue 697 R=r CC=golang-dev http://codereview.appspot.com/804042
2010-03-26gc: allow taking address of out parametersRuss Cox1-1/+1
Fixes issue 186. R=ken2 CC=golang-dev http://codereview.appspot.com/793041
2010-03-25spec changes for panic and recover.Rob Pike1-8/+178
R=rsc, gri CC=golang-dev http://codereview.appspot.com/763041
2010-03-25Sydney University tech talk.Nigel Tao2-0/+395
R=adg CC=golang-dev http://codereview.appspot.com/744042
2010-03-24Delete panicln from the spec.Rob Pike1-2/+1
R=rsc, gri, iant, ken2 CC=golang-dev http://codereview.appspot.com/738041
2010-03-23go spec: modification of defer statementRobert Griesemer1-5/+17
R=r, rsc, ken2, iant CC=golang-dev http://codereview.appspot.com/708041
2010-03-23FAQ: Protocol buffers are now supported. Update the entry.Rob Pike1-4/+4
R=rsc, adg CC=golang-dev http://codereview.appspot.com/702042
2010-03-23Go spec: map indexing never raises a runtime exception.Robert Griesemer1-25/+28
Also: Actual map key must be assignment-compatible with formal map key type. Fixes issue 357. R=r, iant, rsc, ken2 CC=golang-dev http://codereview.appspot.com/673042
2010-03-23release.2010-03-22Andrew Gerrand1-0/+35
R=rsc CC=golang-dev http://codereview.appspot.com/643042
2010-03-20website: add Go Blog widget to frontpage,Andrew Gerrand2-1/+32
add Blog and Wiki links to sideba R=r, rsc, gri CC=golang-dev http://codereview.appspot.com/611042
2010-03-19doc/htmlgen.go: remove unnecessary semicolonsJames Toy1-72/+72
R=rsc CC=golang-dev http://codereview.appspot.com/589043 Committer: Russ Cox <rsc@golang.org>
2010-03-16doc/install: tweak port text; drop redundant list of operating systems.Russ Cox1-8/+4
R=adg CC=golang-dev, r http://codereview.appspot.com/597041
2010-03-16godoc: initial support for showing popup informationRobert Griesemer2-0/+37
for identifiers in Go source code - at the moment just show identifier kind (var, func, etc.) and name (eventually should show declaration, type, etc.) - JavaScript parts by adg R=rsc CC=adg, golang-dev http://codereview.appspot.com/578042
2010-03-16release.2010-03-15Andrew Gerrand1-0/+38
R=rsc CC=golang-dev http://codereview.appspot.com/579041
2010-03-16install.html: elaborate on shell profile instructionsAndrew Gerrand1-5/+8
R=r, rsc CC=golang-dev http://codereview.appspot.com/556041
2010-03-10Revert previous change: complexN only converts to complexN.Ian Lance Taylor1-1/+1
This was discussed with Ken and Russ. 6g has been changed, and both compilers now work this way. This avoids a double type conversion--first to the float type, then to the complex type. R=r CC=golang-dev, ken2, rsc http://codereview.appspot.com/419042
2010-03-10install.html: add section on C toolsRobert Griesemer1-15/+17
R=rsc CC=golang-dev http://codereview.appspot.com/238042