From 0122a667b65eec420e17ef58509ef57864157b61 Mon Sep 17 00:00:00 2001 From: Anthony Martin Date: Tue, 8 Feb 2011 14:51:15 -0800 Subject: [PATCH] go spec: fix a few typos The spec can now be parsed with an xml.Parser using the HTML settings. R=gri CC=golang-dev https://golang.org/cl/4155042 --- doc/go_spec.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 96d85a49a7a..a95ed704a03 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -2897,8 +2897,8 @@ Comparison operators compare two operands and yield a value of type bool == equal != not equal -< less -<= less or equal +< less +<= less or equal > greater >= greater or equal @@ -4012,7 +4012,7 @@ the channel until the channel is closed; it does not produce the zero value sent before the channel is closed (ยงclose and closed). -

The iteration values are assigned to the respective @@ -4444,7 +4444,7 @@ At any time the following relationship holds:

-0 <= len(s) <= cap(s)
+0 <= len(s) <= cap(s)