From: Robert Griesemer Date: Sun, 15 Nov 2009 19:33:20 +0000 (-0800) Subject: Use // to start comment instead of #. X-Git-Tag: weekly.2009-11-17~55 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=13ad5d40c49f10a760c907db6dd09425580310f4;p=gostls13.git Use // to start comment instead of #. Fixes #189. R=r CC=rsc https://golang.org/cl/155055 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 9abebfbe73..c533f0af76 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4190,10 +4190,10 @@ buffered channels:

-s := make([]int, 10, 100);        # slice with len(s) == 10, cap(s) == 100
-s := make([]int, 10);             # slice with len(s) == cap(s) == 10
-c := make(chan int, 10);          # channel with a buffer size of 10
-m := make(map[string] int, 100);  # map with initial space for 100 elements
+s := make([]int, 10, 100);        // slice with len(s) == 10, cap(s) == 100
+s := make([]int, 10);             // slice with len(s) == cap(s) == 10
+c := make(chan int, 10);          // channel with a buffer size of 10
+m := make(map[string] int, 100);  // map with initial space for 100 elements