summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2003-05-19 11:56:08 +0000
committerburaq <buraq@epfl.ch>2003-05-19 11:56:08 +0000
commitf5f7f30a43c449d0a16e8840dc20c1e2694c66fa (patch)
tree53eeeea9ef5896dfe9c27e441f91c5643f573b7c /sources
parentf7f15007686e355a2d8668bf890603be90810e29 (diff)
downloadscala-f5f7f30a43c449d0a16e8840dc20c1e2694c66fa.tar.gz
scala-f5f7f30a43c449d0a16e8840dc20c1e2694c66fa.tar.bz2
scala-f5f7f30a43c449d0a16e8840dc20c1e2694c66fa.zip
fixed comment FunDef, FunSig ( changed 'ParamCl...
fixed comment FunDef, FunSig ( changed 'ParamClause' to 'ParamClauses' )
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/ast/parser/Parser.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/scalac/ast/parser/Parser.java b/sources/scalac/ast/parser/Parser.java
index af49dffd51..7a4d5a12fe 100644
--- a/sources/scalac/ast/parser/Parser.java
+++ b/sources/scalac/ast/parser/Parser.java
@@ -1556,8 +1556,8 @@ public class Parser implements Tokens {
}
}
- /** FunDef ::= Id [FunTypeParamClause] {ParamClause} [`:' Type] `=' Expr
- * FunSig ::= Id [FunTypeParamClause] {ParamClause} `:' Type
+ /** FunDef ::= Id [FunTypeParamClause] {ParamClauses} [`:' Type] `=' Expr
+ * FunSig ::= Id [FunTypeParamClause] {ParamClauses} `:' Type
*/
Tree funDefOrSig(int mods) {
int pos = s.pos;