fixed typo (slipped in with previous submit)

TBR=rsc
OCL=30300
CL=30300
This commit is contained in:
Robert Griesemer 2009-06-15 15:47:15 -07:00
parent 4a50434a36
commit c2faeac8c4
1 changed files with 1 additions and 1 deletions

View File

@ -654,7 +654,7 @@ func (p *parser) parseResult() []*ast.Field {
var results []*ast.Field;
if p.tok == token.LPAREN {
results = p.parseParameters(false);p
results = p.parseParameters(false);
} else if p.tok != token.FUNC {
typ := p.tryType();
if typ != nil {