summaryrefslogtreecommitdiff
path: root/docs/README
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-03-27 06:42:15 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-03-27 06:42:15 -0700
commite8db5aa6aee134b4b70fcc11c82379759565b53c (patch)
tree5c405f706a36e56495b396ae262c3a06dc54fcec /docs/README
parent2a917f4830fe80987dcea05df74bb5c0a0359833 (diff)
parent960d16a87eaaa6d4265fae53e126dc83e5de7e2b (diff)
downloadscala-e8db5aa6aee134b4b70fcc11c82379759565b53c.tar.gz
scala-e8db5aa6aee134b4b70fcc11c82379759565b53c.tar.bz2
scala-e8db5aa6aee134b4b70fcc11c82379759565b53c.zip
Merge pull request #333 from jsuereth/release-fixes-from-2.9.x
Release fixes from 2.9.x
Diffstat (limited to 'docs/README')
-rw-r--r--docs/README14
1 files changed, 4 insertions, 10 deletions
diff --git a/docs/README b/docs/README
index bcc7108399..6af633444d 100644
--- a/docs/README
+++ b/docs/README
@@ -2,8 +2,7 @@
Scala Software Distributions
----------------------------
-- scala-<major>.<minor>.<patch>.tar.bz2 Unix distribution
-- scala-<major>.<minor>.<patch>.tar.gz Unix distribution
+- scala-<major>.<minor>.<patch>.tgz Unix distribution
- scala-<major>.<minor>.<patch>.zip Windows distribution
The standard distributions require Java 1.5 or above. If you don't
@@ -32,15 +31,10 @@ directly accessible.
You may test the distribution by running the following commands:
-$ ./bin/sbaz install scala-devel-docs
-$ ./bin/scalac doc/scala-devel-docs/examples/sort.scala
-$ ./bin/scala examples.sort
-[6,2,8,5,1]
-[1,2,5,6,8]
$ ./bin/scala
-scala> examples.sort.main(null)
-[6,2,8,5,1]
-[1,2,5,6,8]
+scala> Array(4,3,2,1).sorted
+res0: Array[Int] = Array(1, 2, 3, 4)
+
scala>:quit
$