summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-05-26 23:12:29 +1000
committerJason Zaugg <jzaugg@gmail.com>2015-05-26 23:12:29 +1000
commitfc2cd24d7dd8244566b98651baa6bcaeef35ef57 (patch)
treeeab797c528cac29cb90113b744b7aa7e5be4f1ac
parent7fbe4fe49c7c1b0cb3b667aa48678222b2ddbc46 (diff)
parent4f1ac5ee06a1e4218bc517a4328d5460b6da1815 (diff)
downloadscala-fc2cd24d7dd8244566b98651baa6bcaeef35ef57.tar.gz
scala-fc2cd24d7dd8244566b98651baa6bcaeef35ef57.tar.bz2
scala-fc2cd24d7dd8244566b98651baa6bcaeef35ef57.zip
Merge pull request #4520 from xuwei-k/patch-1
fix typo
-rw-r--r--spec/09-top-level-definitions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/09-top-level-definitions.md b/spec/09-top-level-definitions.md
index e3185d8b7d..b8a8dc7e0a 100644
--- a/spec/09-top-level-definitions.md
+++ b/spec/09-top-level-definitions.md
@@ -151,7 +151,7 @@ contain a class `B`, a compiler-time error would result.
A _program_ is a top-level object that has a member method
_main_ of type `(Array[String])Unit`. Programs can be
-executed from a command shell. The program's command arguments are are
+executed from a command shell. The program's command arguments are
passed to the `main` method as a parameter of type
`Array[String]`.