From 5928e1d4dc9ecca4a0dff78cdb3aa26193089c55 Mon Sep 17 00:00:00 2001 From: Peter Mundy Date: Tue, 9 Nov 2010 10:10:57 -0800 Subject: [PATCH] doc: fix go_spec spelling errors R=gri CC=golang-dev https://golang.org/cl/2970042 --- doc/go_spec.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index d0db9d8b9e..6c9283dd33 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -956,7 +956,7 @@ struct {

A pointer type denotes the set of all pointers to variables of a given type, called the base type of the pointer. -The value of an unitialized pointer is nil. +The value of an uninitialized pointer is nil.

@@ -973,7 +973,7 @@ BaseType = Type .
 
 

A function type denotes the set of all functions with the same parameter -and result types. The value of an unitialized variable of function type +and result types. The value of an uninitialized variable of function type is nil.

@@ -1022,7 +1022,7 @@ An interface type specifies a method set called its inte A variable of interface type can store a value of any type with a method set that is any superset of the interface. Such a type is said to implement the interface. -The value of an unitialized variable of interface type is nil. +The value of an uninitialized variable of interface type is nil.

@@ -2929,7 +2929,7 @@ and string values. The result of a comparison is defined as follows:
 	String values are compared byte-wise (lexically).
 	
 	
  • - Boolean values are are equal if they are either both + Boolean values are equal if they are either both true or both false.
  • @@ -4206,7 +4206,7 @@ func complex_f2() (re float, im float) { }
  • -
  • The expression list may be empty if the functions's result +
  • The expression list may be empty if the function's result type specifies names for its result parameters (ยงFunction Types). The result parameters act as ordinary local variables and the function may assign values to them as necessary.