1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:14:40 -07:00

- fixed a couple of grammar errors

SVN=111685
This commit is contained in:
Robert Griesemer 2008-03-06 21:24:57 -08:00
parent 250767174b
commit 5009237adb

View File

@ -532,9 +532,9 @@ Any array may be assigned to an open array variable with the
same element type. Typically, open arrays are used as same element type. Typically, open arrays are used as
formal parameters for functions. formal parameters for functions.
ArrayType = { '[' ArrayLength ']' } ElementType. ArrayType = '[' [ ArrayLength ] ']' ElementType .
ArrayLength = Expression. ArrayLength = Expression .
ElementType = Type. ElementType = Type .
[] uint8 [] uint8
[2*n] int [2*n] int
@ -687,7 +687,7 @@ Functions can return multiple values simultaneously.
Parameters = '(' [ ParameterList ] ')' . Parameters = '(' [ ParameterList ] ')' .
ParameterList = ParameterSection { ',' ParameterSection } . ParameterList = ParameterSection { ',' ParameterSection } .
ParameterSection = [ IdentifierList ] Type . ParameterSection = [ IdentifierList ] Type .
Result = [ Type ] | '(' ParameterList ')' . Result = Type | '(' ParameterList ')' .
// Function types // Function types
func () func ()