]> Cypherpunks repositories - gostls13.git/commitdiff
fixed typo (slipped in with previous submit)
authorRobert Griesemer <gri@golang.org>
Mon, 15 Jun 2009 22:47:15 +0000 (15:47 -0700)
committerRobert Griesemer <gri@golang.org>
Mon, 15 Jun 2009 22:47:15 +0000 (15:47 -0700)
TBR=rsc
OCL=30300
CL=30300

src/pkg/go/parser/parser.go

index 6179e0743904cbed8e74e7921887fa9688b63a49..aabd2248b0bcba22a9463da3c1beb06978a65c4d 100644 (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 {