summaryrefslogtreecommitdiff
path: root/14-the-scala-standard-library.md
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-03-10 16:29:40 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-03-10 16:31:47 -0700
commit839fd6e55b178b5c2a7aeaa7c9a542fd3637fe01 (patch)
tree514e8fbfc2acc55b61d79e0d20bdc967c5894db9 /14-the-scala-standard-library.md
parentfa4aba59c3dbeb1fe98f743764b17635ee4688ee (diff)
downloadscala-839fd6e55b178b5c2a7aeaa7c9a542fd3637fe01.tar.gz
scala-839fd6e55b178b5c2a7aeaa7c9a542fd3637fe01.tar.bz2
scala-839fd6e55b178b5c2a7aeaa7c9a542fd3637fe01.zip
github markdown: numbered lists
Diffstat (limited to '14-the-scala-standard-library.md')
-rw-r--r--14-the-scala-standard-library.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/14-the-scala-standard-library.md b/14-the-scala-standard-library.md
index d03dc53efc..91b9f4c73e 100644
--- a/14-the-scala-standard-library.md
+++ b/14-the-scala-standard-library.md
@@ -776,16 +776,16 @@ prefers high-priority implicits over low-priority ones.
The available low-priority implicits include definitions falling into the following categories.
-#. For every primitive type, a wrapper that takes values of that type
+1. For every primitive type, a wrapper that takes values of that type
to instances of a `runtime.Rich*` class. For instance, values of type `Int`
can be implicitly converted to instances of class `runtime.RichInt`.
-#. For every array type with elements of primitive type, a wrapper that
+1. For every array type with elements of primitive type, a wrapper that
takes the arrays of that type to instances of a `runtime.WrappedArray` class. For instance, values of type `Array[Float]` can be implicitly converted to instances of class `runtime.WrappedArray[Float]`.
There are also generic array wrappers that take elements
of type `Array[T]` for arbitrary `T` to `WrappedArray`s.
-#. An implicit conversion from `String` to `WrappedString`.
+1. An implicit conversion from `String` to `WrappedString`.
The available high-priority implicits include definitions falling into the following categories.