From 82e2db70f6a08f55dc7c9d216af9642336390eff Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Sat, 4 Jan 2014 10:52:59 -0800 Subject: [PATCH] spec: s/and/or/ for correctness and parallelism No change to the meaning, just bad writing found by Doug McIlroy. Let's start the new year off with a bang. R=golang-codereviews, bradfitz, dave CC=golang-codereviews https://golang.org/cl/47110044 --- doc/go_spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 3d3eaa4cfe..06f0fec83a 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -5263,7 +5263,7 @@ At any time the following relationship holds:

The length of a nil slice, map or channel is 0. -The capacity of a nil slice and channel is 0. +The capacity of a nil slice or channel is 0.

-- 2.48.1