summaryrefslogtreecommitdiff
path: root/doc/articles/wiki
Commit message (Collapse)AuthorAgeFilesLines
* doc: remove all docs not tied to distributionRuss Cox2021-02-1621-1701/+0
| | | | | | | | | | | | | | | | | | They have moved to x/website in CL 291693. The docs that are left are the ones that are edited at the same time as development in this repository and are tied to the specific version of Go being developed. Those are: - the language spec - the memory model - the assembler manual - the current release's release notes Change-Id: I437c4d33ada1b1716b1919c3c939c2cacf407e83 Reviewed-on: https://go-review.googlesource.com/c/go/+/291711 Trust: Russ Cox <rsc@golang.org> Trust: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
* doc/articles/wiki: add missing log import to net/http tutorialChirag Sukhala2020-08-161-0/+1
| | | | | | | | | | The log package is used with the net/http but was not in the import clause. Change-Id: Ic45b987633adf0ee15defd4d136b5d37027e22b0 GitHub-Last-Rev: e74aff53370569864b7ec8c18617a5d992d34bf2 GitHub-Pull-Request: golang/go#36674 Reviewed-on: https://go-review.googlesource.com/c/go/+/215618 Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
* doc/articles/wiki: use correct variable name in closures guideHowJMay2020-03-201-1/+1
| | | | | | | | | | | | | Fixes non-existent variable TitleValidator to be validPath in the closures, functions literal section. Fixes #36779 Change-Id: I59762c358c3e00d1cc03d9d1e2aace03f145321d GitHub-Last-Rev: a5e9b17a3707fc48c6d87bab3a4968f2ef63ab65 GitHub-Pull-Request: golang/go#36783 Reviewed-on: https://go-review.googlesource.com/c/go/+/216479 Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
* doc: convert remaining bash tests to GoBryan C. Mills2019-11-1418-148/+216
| | | | | | | | | | Updates #28387 Updates #30316 Fixes #35574 Change-Id: I21c9e18573909e092ed8dcec91b8542bb97e9f5a Reviewed-on: https://go-review.googlesource.com/c/go/+/207263 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
* doc/articles: format error string as per go styleAditya Harindar2019-10-281-1/+1
| | | | | | | | | | First letter of an error string should not be capitalized, as prescribed in the [wiki](https://github.com/golang/go/wiki/Errors). Change-Id: Iea1413f19b5240d3bef79f216094d210b54bdb62 GitHub-Last-Rev: d8e167107122b603c4f647d722537668ad1c680d GitHub-Pull-Request: golang/go#35203 Reviewed-on: https://go-review.googlesource.com/c/go/+/203797 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
* all: remove trailing whitespace from HTML filesDaniel Martí2019-09-181-1/+1
| | | | | | | | | | | | I noticed lots of trailing whitespace in one of cmd/trace's HTML files. While at it, remove a few others from still-maintained files. Leave old documents alone, such as doc/devel/weekly.html. Change-Id: I7de7bbb6dd3fe6403bbb1f1178a8d3640c1e537b Reviewed-on: https://go-review.googlesource.com/c/go/+/196178 Run-TryBot: Daniel Martí <mvdan@mvdan.cc> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
* doc/articles/wiki: highlight the use of _ warningAgniva De Sarker2018-02-141-6/+6
| | | | | | | | | | | | This moves the paragraph mentioning the use of _ higher up to emphasize the warning and thereby reducing chances of getting stuck. Fixes #22617 Change-Id: I64352a3e966a22d86fc9d381332bade49d74714a Reviewed-on: https://go-review.googlesource.com/87375 Reviewed-by: Ian Lance Taylor <iant@golang.org>
* doc: fix minor capitalization typoAgniva De Sarker2017-09-281-1/+1
| | | | | | | | | | Updated page to Page to match with the sample code Fixes #21773 Change-Id: Ia884a22fd587860c7a6148103b2b474425e45284 Reviewed-on: https://go-review.googlesource.com/66790 Reviewed-by: Ian Lance Taylor <iant@golang.org>
* doc/articles/wiki: fix final-test.patchMatthew Dempsky2017-08-311-36/+27
| | | | | | | | | | Fixes test regression introduced by golang.org/cl/53071. Change-Id: Ibb085cf6d6be7b91b7c90b7bc6237c10f3097703 Reviewed-on: https://go-review.googlesource.com/60775 Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
* doc: add error handling on http.ListenAndServeFrancesc Campoy Flores2017-08-3112-11/+27
| | | | | | | | Fixes #19511 Change-Id: I5585726773b822dba0be0196961132323ebbe084 Reviewed-on: https://go-review.googlesource.com/53071 Reviewed-by: Chris Broadfoot <cbro@golang.org>
* *.bash: always use the same string equality operatorDaniel Martí2017-03-141-1/+1
| | | | | | | | | | | | | POSIX Shell only supports = to compare variables inside '[' tests. But this is Bash, where == is an alias for =. In practice they're the same, but the current form is inconsisnent and breaks POSIX for no good reason. Change-Id: I38fa7a5a90658dc51acc2acd143049e510424ed8 Reviewed-on: https://go-review.googlesource.com/38031 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
* doc/articles/wiki: remove generated final-test.go after testAlex Brainman2015-06-171-1/+1
| | | | | | Change-Id: If6dc3acdc023ac78f63e257974cd2d2e9f1cca10 Reviewed-on: https://go-review.googlesource.com/11161 Reviewed-by: Andrew Gerrand <adg@golang.org>
* doc/articles/wiki: don't run tests when 'patch' command unavailableAndrew Gerrand2015-06-151-0/+6
| | | | | | | | Change-Id: I21cfea3eadb37904252900324c23e2664b121bbb Reviewed-on: https://go-review.googlesource.com/11099 Run-TryBot: Andrew Gerrand <adg@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Andrew Gerrand <adg@golang.org>
* wiki article: remove "flag" import from the codeAlex Schroeder2015-06-143-28/+44
| | | | | | | | | | | | | | | | When reading along the article, the extra code added in the final version is not explained. The main function calls flag.Parse(), for example, which will cause an error, unless the readers looks at the entirety of final.go to see the import added. The file shown to the users no longer has the extra flags. The testing code is now in a patch that gets applied to final.go in order to create final-test.go. This is the file that will be used to test the code, matching final.go as much as possible. Change-Id: I022f5f6c88e107c8ba5623661d74a8d260d05266 Reviewed-on: https://go-review.googlesource.com/11061 Reviewed-by: Andrew Gerrand <adg@golang.org>
* all: fix "the the" typos.Shenghou Ma2014-05-201-1/+1
| | | | | | | LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/93470043
* build: remove depdenency on GNU makeAndrew Gerrand2014-04-072-10/+2
| | | | | | | LGTM=bradfitz R=bradfitz CC=golang-codereviews https://golang.org/cl/84920043
* build: fix race in doc/articles/wiki testRick Arnold2014-03-183-7/+42
| | | | | | | | | | | | | | | | | The original test would open a local port and then immediately close it and use the port number in subsequent tests. Between the port being closed and reused by the later process, it could be opened by some other program on the machine. Changed the test to run the server process directly and have it save the assigned port to a text file to be used by client processes. Fixes #5564. LGTM=adg R=golang-codereviews, gobot, adg CC=golang-codereviews https://golang.org/cl/72290043
* doc/articles/wiki: remove GNU make dependencyAram Hăvărneanu2013-12-151-1/+1
| | | | | | R=golang-dev, adg, minux.ma CC=golang-dev https://golang.org/cl/38410043
* doc/articles/wiki: fix path handling and clean up test processAndrew Gerrand2013-10-0814-162/+51
| | | | | | | | Fixes #6525. R=r CC=golang-dev https://golang.org/cl/14383043
* doc: move spec and memory model back to /ref/Andrew Gerrand2013-10-041-2/+2
| | | | | | R=golang-dev, r CC=golang-dev https://golang.org/cl/14364043
* doc: update links to spec and memory modelAndrew Gerrand2013-09-271-2/+2
| | | | | | | | Fixes #6488. R=golang-dev, r CC=golang-dev https://golang.org/cl/14004043
* doc: fix wiki content errorAndrew Gerrand2013-07-221-5/+4
| | | | | | | | Fixes #5898. R=golang-dev, r CC=golang-dev https://golang.org/cl/11556043
* doc: fix wiki codelab description of template parsingAndrew Gerrand2013-02-261-4/+5
| | | | | | R=golang-dev, r CC=golang-dev https://golang.org/cl/7372048
* doc/articles/wiki/test.bash: suppress unnecessary outputShenghou Ma2012-12-241-1/+2
| | | | | | R=golang-dev, rsc CC=golang-dev https://golang.org/cl/7000045
* doc/articles/wiki: fix racy testBrad Fitzpatrick2012-11-192-8/+15
| | | | | | R=golang-dev, r CC=golang-dev https://golang.org/cl/6853069
* doc/articles/wiki: numerous fixesJimmy Zelinskie2012-10-113-99/+243
| | | | | | | | | | | | | Fixes #3733 Fixes #2149 Updated Syntax Added part3.go example program Added part3-errorhandling.go example program Improved wording in some places R=golang-dev, adg, minux.ma CC=golang-dev https://golang.org/cl/6636048
* doc: update wiki article to use html/template properly.David Symonds2012-04-263-11/+12
| | | | | | | | Fixes #3569. R=golang-dev, r CC=golang-dev https://golang.org/cl/6116055
* doc: update wiki tutorial templates, and template discussionAndrew Gerrand2012-03-273-1125/+58
| | | | | | | | Fixes #3384. R=golang-dev, r CC=golang-dev https://golang.org/cl/5915044
* docs/articles/wiki: minor fixesRob Pike2012-03-241-3/+3
| | | | | | R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5900046
* doc: fix freebsd buildShenghou Ma2012-03-081-2/+5
| | | | | | | | Also rename it to test.bash, for naming consistency. R=golang-dev, r CC=golang-dev https://golang.org/cl/5784045
* doc: clean up docs page, refer to wiki, change install doc pathsAndrew Gerrand2012-03-052-6/+6
| | | | | | R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/5728051
* doc: move wiki tutorial into articles directory, rmdir doc/codelabAndrew Gerrand2012-02-2722-0/+2598
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5701050