From 839fd6e55b178b5c2a7aeaa7c9a542fd3637fe01 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 10 Mar 2014 16:29:40 -0700 Subject: github markdown: numbered lists --- 14-the-scala-standard-library.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '14-the-scala-standard-library.md') 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. -- cgit v1.2.3