diff --git a/public/arrays b/public/arrays index e173da9..606ea6e 100644 --- a/public/arrays +++ b/public/arrays @@ -199,7 +199,7 @@ typical Go. We’ll look at slices next.

diff --git a/public/atomic-counters b/public/atomic-counters index 0afd46e..0eb8aea 100644 --- a/public/atomic-counters +++ b/public/atomic-counters @@ -212,7 +212,7 @@ state.

diff --git a/public/base64-encoding b/public/base64-encoding index 2389ba3..fa3528a 100644 --- a/public/base64-encoding +++ b/public/base64-encoding @@ -182,7 +182,7 @@ but they both decode to the original string as desired.

diff --git a/public/channel-buffering b/public/channel-buffering index 74e6fa3..796efe8 100644 --- a/public/channel-buffering +++ b/public/channel-buffering @@ -146,7 +146,7 @@ concurrent receive.

diff --git a/public/channel-directions b/public/channel-directions index 134697b..84e130e 100644 --- a/public/channel-directions +++ b/public/channel-directions @@ -138,7 +138,7 @@ receive on this channel.

diff --git a/public/channel-synchronization b/public/channel-synchronization index f13f33d..7a974b3 100644 --- a/public/channel-synchronization +++ b/public/channel-synchronization @@ -173,7 +173,7 @@ started.

diff --git a/public/channels b/public/channels index 19f60d3..5d5d7e9 100644 --- a/public/channels +++ b/public/channels @@ -161,7 +161,7 @@ message without having to use any other synchronization.

diff --git a/public/closing-channels b/public/closing-channels index 384dc97..8730c42 100644 --- a/public/closing-channels +++ b/public/closing-channels @@ -187,7 +187,7 @@ example: range over channels.

diff --git a/public/closures b/public/closures index 12d2443..3afcb89 100644 --- a/public/closures +++ b/public/closures @@ -183,7 +183,7 @@ recursion.

diff --git a/public/collection-functions b/public/collection-functions index 0d2e11a..9b533d9 100644 --- a/public/collection-functions +++ b/public/collection-functions @@ -362,7 +362,7 @@ type.

diff --git a/public/command-line-arguments b/public/command-line-arguments index 7fb2e79..fa26f6c 100644 --- a/public/command-line-arguments +++ b/public/command-line-arguments @@ -161,7 +161,7 @@ with flags.

diff --git a/public/command-line-flags b/public/command-line-flags index 9414b9e..6c49752 100644 --- a/public/command-line-flags +++ b/public/command-line-flags @@ -313,7 +313,7 @@ way to parameterize programs.

diff --git a/public/constants b/public/constants index 7942b0f..76a6a89 100644 --- a/public/constants +++ b/public/constants @@ -174,7 +174,7 @@ assignment or function call. For example, here

diff --git a/public/defer b/public/defer index 98dc9e4..57d15fb 100644 --- a/public/defer +++ b/public/defer @@ -186,7 +186,7 @@ after being written.

diff --git a/public/environment-variables b/public/environment-variables index 1fbccfc..e2d7849 100644 --- a/public/environment-variables +++ b/public/environment-variables @@ -177,7 +177,7 @@ program picks that value up.

diff --git a/public/epoch b/public/epoch index 4db41c1..fe25dec 100644 --- a/public/epoch +++ b/public/epoch @@ -168,7 +168,7 @@ parsing and formatting.

diff --git a/public/errors b/public/errors index d402097..72ca49d 100644 --- a/public/errors +++ b/public/errors @@ -290,7 +290,7 @@ on the Go blog for more on error handling.

diff --git a/public/execing-processes b/public/execing-processes index a22e259..531e8f5 100644 --- a/public/execing-processes +++ b/public/execing-processes @@ -194,7 +194,7 @@ processes covers most use cases for fork.

diff --git a/public/exit b/public/exit index 071806b..721fbaa 100644 --- a/public/exit +++ b/public/exit @@ -165,7 +165,7 @@ the status in the terminal.

diff --git a/public/for b/public/for index ffffa5d..f7c841e 100644 --- a/public/for +++ b/public/for @@ -188,7 +188,7 @@ structures.

diff --git a/public/functions b/public/functions index f17fae9..debd8cb 100644 --- a/public/functions +++ b/public/functions @@ -186,7 +186,7 @@ multiple return values, which we’ll look at next.

diff --git a/public/goroutines b/public/goroutines index 11e301d..f46db9e 100644 --- a/public/goroutines +++ b/public/goroutines @@ -199,7 +199,7 @@ concurrent Go programs: channels.

diff --git a/public/hello-world b/public/hello-world index a4660a1..e6a37bd 100644 --- a/public/hello-world +++ b/public/hello-world @@ -132,7 +132,7 @@ learn more about the language.

diff --git a/public/if-else b/public/if-else index a161732..499fb4c 100644 --- a/public/if-else +++ b/public/if-else @@ -177,7 +177,7 @@ for basic conditions.

diff --git a/public/index.html b/public/index.html index c35be82..eaffb11 100644 --- a/public/index.html +++ b/public/index.html @@ -167,7 +167,7 @@ diff --git a/public/interfaces b/public/interfaces index 0f06447..ff701bd 100644 --- a/public/interfaces +++ b/public/interfaces @@ -227,7 +227,7 @@ these structs as arguments to measure.

diff --git a/public/json b/public/json index 5cd6e90..c23254e 100644 --- a/public/json +++ b/public/json @@ -394,7 +394,7 @@ for more.

diff --git a/public/line-filters b/public/line-filters index 7d0b994..2e9a547 100644 --- a/public/line-filters +++ b/public/line-filters @@ -197,7 +197,7 @@ lowercase lines.

diff --git a/public/maps b/public/maps index 2829d28..0cbf53c 100644 --- a/public/maps +++ b/public/maps @@ -225,7 +225,7 @@ printed with fmt.Println.

diff --git a/public/methods b/public/methods index 2245fba..856f473 100644 --- a/public/methods +++ b/public/methods @@ -190,7 +190,7 @@ naming related sets of methods: interfaces.

diff --git a/public/multiple-return-values b/public/multiple-return-values index fc2a627..ca34e40 100644 --- a/public/multiple-return-values +++ b/public/multiple-return-values @@ -159,7 +159,7 @@ feature of Go functions; we’ll look at this next.

diff --git a/public/mutexes b/public/mutexes index 7940e38..9c19368 100644 --- a/public/mutexes +++ b/public/mutexes @@ -290,7 +290,7 @@ management task using only goroutines and channels.

diff --git a/public/non-blocking-channel-operations b/public/non-blocking-channel-operations index 2e2e713..d7e2c1a 100644 --- a/public/non-blocking-channel-operations +++ b/public/non-blocking-channel-operations @@ -169,7 +169,7 @@ on both messages and signals.

diff --git a/public/number-parsing b/public/number-parsing index caf908d..288d9b7 100644 --- a/public/number-parsing +++ b/public/number-parsing @@ -204,7 +204,7 @@ bits.

diff --git a/public/panic b/public/panic index cfd8cbe..27a416a 100644 --- a/public/panic +++ b/public/panic @@ -165,7 +165,7 @@ to use error-indicating return values wherever possible.

diff --git a/public/pointers b/public/pointers index 9587b1d..62738ba 100644 --- a/public/pointers +++ b/public/pointers @@ -186,7 +186,7 @@ the memory address for that variable.

diff --git a/public/random-numbers b/public/random-numbers index bd84c0e..49f46c1 100644 --- a/public/random-numbers +++ b/public/random-numbers @@ -220,7 +220,7 @@ that Go can provide.

diff --git a/public/range b/public/range index f2532e8..09ab1ec 100644 --- a/public/range +++ b/public/range @@ -193,7 +193,7 @@ of the rune and the second the rune itself.

diff --git a/public/range-over-channels b/public/range-over-channels index 1362df6..e189190 100644 --- a/public/range-over-channels +++ b/public/range-over-channels @@ -147,7 +147,7 @@ values be received.

diff --git a/public/rate-limiting b/public/rate-limiting index 39a49c9..d635e11 100644 --- a/public/rate-limiting +++ b/public/rate-limiting @@ -252,7 +252,7 @@ then serve the remaining 2 with ~200ms delays each.

diff --git a/public/reading-files b/public/reading-files index 0545c3e..39e51de 100644 --- a/public/reading-files +++ b/public/reading-files @@ -290,7 +290,7 @@ be scheduled immediately after Opening with

diff --git a/public/recursion b/public/recursion index 069788c..844b85f 100644 --- a/public/recursion +++ b/public/recursion @@ -118,7 +118,7 @@ base case of fact(0).

diff --git a/public/regular-expressions b/public/regular-expressions index c7cd1ac..f000e06 100644 --- a/public/regular-expressions +++ b/public/regular-expressions @@ -333,7 +333,7 @@ the regexp package docs

diff --git a/public/select b/public/select index 6384e8b..f8ba88f 100644 --- a/public/select +++ b/public/select @@ -174,7 +174,7 @@ concurrently.

diff --git a/public/sha1-hashes b/public/sha1-hashes index 85e318f..66c6d77 100644 --- a/public/sha1-hashes +++ b/public/sha1-hashes @@ -194,7 +194,7 @@ you should carefully research

diff --git a/public/signals b/public/signals index 5103605..3288d91 100644 --- a/public/signals +++ b/public/signals @@ -179,7 +179,7 @@ causing the program to print interrupt and then exit.

diff --git a/public/slices b/public/slices index 412b741..ba38bc0 100644 --- a/public/slices +++ b/public/slices @@ -301,7 +301,7 @@ Go’s other key builtin data structure: maps.

diff --git a/public/sorting b/public/sorting index 9213a92..328e32c 100644 --- a/public/sorting +++ b/public/sorting @@ -151,7 +151,7 @@ slices and true as the result of our AreSorted test. diff --git a/public/sorting-by-functions b/public/sorting-by-functions index 710700f..cb0f615 100644 --- a/public/sorting-by-functions +++ b/public/sorting-by-functions @@ -168,7 +168,7 @@ functions.

diff --git a/public/spawning-processes b/public/spawning-processes index 62c3d3d..db1f72b 100644 --- a/public/spawning-processes +++ b/public/spawning-processes @@ -250,7 +250,7 @@ as if we had run them directly from the command-line.

diff --git a/public/stateful-goroutines b/public/stateful-goroutines index aa0579e..69d83a8 100644 --- a/public/stateful-goroutines +++ b/public/stateful-goroutines @@ -305,7 +305,7 @@ program.

diff --git a/public/string-formatting b/public/string-formatting index 0e63591..b884639 100644 --- a/public/string-formatting +++ b/public/string-formatting @@ -448,7 +448,7 @@ and returns a string without printing it anywhere.

diff --git a/public/string-functions b/public/string-functions index 30b2914..9594a23 100644 --- a/public/string-functions +++ b/public/string-functions @@ -200,7 +200,7 @@ for more information.

diff --git a/public/structs b/public/structs index 3b98324..c9f3181 100644 --- a/public/structs +++ b/public/structs @@ -215,7 +215,7 @@ pointers are automatically dereferenced.

diff --git a/public/switch b/public/switch index 5e82e98..32127df 100644 --- a/public/switch +++ b/public/switch @@ -194,7 +194,7 @@ type corresponding to its clause.

diff --git a/public/tickers b/public/tickers index 18d65e0..cf16820 100644 --- a/public/tickers +++ b/public/tickers @@ -144,7 +144,7 @@ before we stop it.

diff --git a/public/time b/public/time index ebc1a34..017a30f 100644 --- a/public/time +++ b/public/time @@ -261,7 +261,7 @@ the Unix epoch.

diff --git a/public/time-formatting-parsing b/public/time-formatting-parsing index b3a8a5c..7a154fb 100644 --- a/public/time-formatting-parsing +++ b/public/time-formatting-parsing @@ -195,7 +195,7 @@ explaining the parsing problem.

diff --git a/public/timeouts b/public/timeouts index 46d44ab..f19ecae 100644 --- a/public/timeouts +++ b/public/timeouts @@ -184,7 +184,7 @@ examples of this next: timers and tickers.

diff --git a/public/timers b/public/timers index 1b67628..4c2e27a 100644 --- a/public/timers +++ b/public/timers @@ -161,7 +161,7 @@ a chance to expire.

diff --git a/public/url-parsing b/public/url-parsing index 31321f9..4fba27c 100644 --- a/public/url-parsing +++ b/public/url-parsing @@ -226,7 +226,7 @@ pieces that we extracted.

diff --git a/public/values b/public/values index 03809d1..5a815cd 100644 --- a/public/values +++ b/public/values @@ -145,7 +145,7 @@ basic examples.

diff --git a/public/variables b/public/variables index 856f4c5..7f81e33 100644 --- a/public/variables +++ b/public/variables @@ -176,7 +176,7 @@ initializing a variable, e.g. for

diff --git a/public/variadic-functions b/public/variadic-functions index 49b6a0f..5991544 100644 --- a/public/variadic-functions +++ b/public/variadic-functions @@ -165,7 +165,7 @@ to form closures, which we’ll look at next.

diff --git a/public/worker-pools b/public/worker-pools index ba84dfe..baeb60a 100644 --- a/public/worker-pools +++ b/public/worker-pools @@ -211,7 +211,7 @@ there are 3 workers operating concurrently.

diff --git a/public/writing-files b/public/writing-files index fba471e..21cdd86 100644 --- a/public/writing-files +++ b/public/writing-files @@ -280,7 +280,7 @@ we’ve just seen to the stdin and stdout streams.

diff --git a/templates/example.tmpl b/templates/example.tmpl index 8315df7..3952463 100644 --- a/templates/example.tmpl +++ b/templates/example.tmpl @@ -41,7 +41,7 @@

{{end}} diff --git a/templates/index.tmpl b/templates/index.tmpl index 313904d..929d3c1 100644 --- a/templates/index.tmpl +++ b/templates/index.tmpl @@ -39,7 +39,7 @@ {{end}}