Commit 766c3ff7 authored by Andrew Gerrand's avatar Andrew Gerrand

effective_go: clarified small comment

R=rsc, cw
CC=golang-dev
https://golang.org/cl/217085
parent e465ad3c
...@@ -943,7 +943,7 @@ These examples illustrate the difference between <code>new()</code> and ...@@ -943,7 +943,7 @@ These examples illustrate the difference between <code>new()</code> and
<pre> <pre>
var p *[]int = new([]int) // allocates slice structure; *p == nil; rarely useful var p *[]int = new([]int) // allocates slice structure; *p == nil; rarely useful
var v []int = make([]int, 100) // v now refers to a new array of 100 ints var v []int = make([]int, 100) // the slice v now refers to a new array of 100 ints
// Unnecessarily complex: // Unnecessarily complex:
var p *[]int = new([]int) var p *[]int = new([]int)
......
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