summaryrefslogtreecommitdiff
path: root/14-the-scala-standard-library.md
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-03-11 17:50:24 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-03-11 18:01:06 -0700
commit507e58bef8dd7d0a77247e85d3180313d44bc45e (patch)
treed22bbceac25939d44268b3d7c5dae8560f3cc994 /14-the-scala-standard-library.md
parent09c957bef7b063353add3c04a9e0568aeed1eb30 (diff)
downloadscala-507e58bef8dd7d0a77247e85d3180313d44bc45e.tar.gz
scala-507e58bef8dd7d0a77247e85d3180313d44bc45e.tar.bz2
scala-507e58bef8dd7d0a77247e85d3180313d44bc45e.zip
github markdown: tables
Diffstat (limited to '14-the-scala-standard-library.md')
-rw-r--r--14-the-scala-standard-library.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/14-the-scala-standard-library.md b/14-the-scala-standard-library.md
index 37174b8af3..068f886e19 100644
--- a/14-the-scala-standard-library.md
+++ b/14-the-scala-standard-library.md
@@ -426,12 +426,12 @@ Because of the syntactic sugar for `apply` and `update` operations,
we have the following correspondences between Scala and Java/C# code for
operations on an array `xs`:
+| | |
|------------------|------------|
|_Scala_ |_Java/C#_ |
|`xs.length` |`xs.length` |
|`xs(i)` |`xs[i]` |
|`xs(i) = e` |`xs[i] = e` |
-|------------------|------------|
Two implicit conversions exist in `Predef` that are frequently applied to arrays:
a conversion to `scala.collection.mutable.ArrayOps` and a conversion to