summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
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
2010-03-10go_spec.html: fix typo and linkRobert Griesemer1-4/+4
R=r CC=golang-dev http://codereview.appspot.com/382045
2010-03-09missing ';' renders the code snippet incorrectly on websiteAndrey Mirtchovski1-1/+1
R=golang-dev, r CC=golang-dev http://codereview.appspot.com/367041 Committer: Rob Pike <r@golang.org>
2010-03-08Complex values may only be compared for equality or inequality.Ian Lance Taylor1-2/+2
R=gri, r CC=golang-dev http://codereview.appspot.com/294042
2010-03-08Clarify that conversions to complex are OK.Ian Lance Taylor1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/296042
2010-03-04Spec for complex numbersRob Pike1-35/+153
R=rsc, ken2, gri, iant CC=cw, golang-dev http://codereview.appspot.com/227041
2010-03-04release.2010-03-04Andrew Gerrand1-0/+28
R=rsc CC=golang-dev http://codereview.appspot.com/229048
2010-03-04First run at a Programming FAQAndrew Gerrand2-56/+276
Moved a couple of FAQs from the main FAQ, and added some others R=r, rsc, iant, gri CC=golang-dev http://codereview.appspot.com/218070
2010-03-01Minor mistake in docs.Robert Griesemer1-1/+1
Fixes issue 633. R=adg CC=golang-dev http://codereview.appspot.com/224090
2010-03-02strings.Bytes -> []byte for documentation example, src/pkg/* comments, and ↵Andrey Mirtchovski2-12/+10
htmlgen.go R=rsc, adg CC=golang-dev http://codereview.appspot.com/224087 Committer: Andrew Gerrand <adg@golang.org>
2010-02-25doc: Use byte("...") over byte{...}Christopher Wedgwood1-1/+1
R=rsc, r CC=golang-dev http://codereview.appspot.com/224069 Committer: Rob Pike <r@golang.org>
2010-02-23release.2010-02-23 part oneAndrew Gerrand1-0/+26
R=rsc CC=golang-dev http://codereview.appspot.com/217108
2010-02-22go_mem: clarified unbuffered channel sync exampleAndrew Gerrand1-2/+3
R=rsc CC=golang-dev http://codereview.appspot.com/218063
2010-02-22effective_go: clarified small commentAndrew Gerrand1-1/+1
R=rsc, cw CC=golang-dev http://codereview.appspot.com/217085
2010-02-18godoc: path cleanups, fixed a race condition, initial support for a menu on ↵Robert Griesemer1-0/+13
pages R=rsc CC=adg, golang-dev http://codereview.appspot.com/215050
2010-02-17release 2010-02-17 part oneAndrew Gerrand1-0/+31
R=rsc CC=golang-dev http://codereview.appspot.com/212047
2010-02-17language spec: make NUL byte rule an implementation restrictionRobert Griesemer1-1/+2
R=rsc, r, iant, ken2 CC=golang-dev http://codereview.appspot.com/211041
2010-02-16install: Added gcc, build-essential to apt-get command line.Andrew Gerrand1-1/+1
Mercury now requires build tools to install. R=rsc CC=golang-dev http://codereview.appspot.com/210042
2010-02-16spec: disallow NUL in source filesRuss Cox1-0/+3
R=r CC=golang-dev http://codereview.appspot.com/209042
2010-02-17specification of []int(string) and []byte(string).Rob Pike1-12/+40
also clarify other string conversions. R=rsc, iant, gri, ken2 CC=golang-dev http://codereview.appspot.com/207103
2010-02-04release.2010-02-04 step oneAndrew Gerrand1-0/+34
R=rsc CC=golang-dev http://codereview.appspot.com/202054
2010-02-02added note about the GOARM env variableKai Backman1-0/+11
R=rsc, r CC=golang-dev http://codereview.appspot.com/198074
2010-02-01...T is now implementedRob Pike1-1/+0
R=rsc, gri CC=golang-dev http://codereview.appspot.com/198050
2010-02-01language FAQ entry on braces and semicolonsRob Pike1-0/+30
R=rsc, iant, gri CC=golang-dev http://codereview.appspot.com/196075
2010-02-01add link to go build dashboard.Rob Pike1-0/+3
break the list into two pieces R=golang-dev CC=golang-dev http://codereview.appspot.com/196088
2010-02-01the package global name space problem is addressed; update road mapRob Pike1-6/+0
R=rsc, iant CC=golang-dev http://codereview.appspot.com/196087
2010-01-29Long-overdue update for semicolon change.Ian Lance Taylor1-62/+92
Fixes issue 485. R=r CC=golang-dev http://codereview.appspot.com/196071
2010-01-29The gccgo frontend has moved to a new repository.Ian Lance Taylor2-33/+78
Update the documents accordingly. Also document gccgo specific options. R=r CC=golang-dev http://codereview.appspot.com/196070
2010-01-28two minor build fixesRuss Cox1-1/+1
Fixes issue 572. Fixes issue 570. R=r CC=golang-dev http://codereview.appspot.com/194134
2010-01-27prepare for release.2010-01-27Russ Cox1-0/+43
R=r CC=golang-dev http://codereview.appspot.com/195080
2010-01-27ucsd cns talk, focused on networkingRuss Cox2-5/+458
R=r CC=golang-dev http://codereview.appspot.com/186230
2010-01-27note that ...T is not yet implemented.Rob Pike1-0/+1
R=rsc CC=golang-dev http://codereview.appspot.com/194114
2010-01-27add definition of new parameter styleRob Pike1-17/+51
... T for trailing arguments of type T. R=rsc, gri, ken2, iant CC=golang-dev http://codereview.appspot.com/194100