Commit 13ad5d40 authored by Robert Griesemer's avatar Robert Griesemer

Use // to start comment instead of #.

Fixes #189.

R=r
CC=rsc
https://golang.org/cl/155055
parent b18bee94
......@@ -4190,10 +4190,10 @@ buffered channels:
</p>
<pre>
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
</pre>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment