summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/04-basic-declarations-and-definitions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/04-basic-declarations-and-definitions.md b/spec/04-basic-declarations-and-definitions.md
index ed7e4c625e..ad51182dec 100644
--- a/spec/04-basic-declarations-and-definitions.md
+++ b/spec/04-basic-declarations-and-definitions.md
@@ -726,7 +726,7 @@ def sum(args: Int*) = {
```
The following applications of this method yield `0`, `1`,
-`6`, in that order.
+`14`, in that order.
```scala
sum()
@@ -747,7 +747,7 @@ sum(xs) // ***** error: expected: Int, found: List[Int]
```
By contrast, the following application is well formed and yields again
-the result `6`:
+the result `14`:
```scala
sum(xs: _*)