summaryrefslogtreecommitdiff
path: root/src/library/scala/Option.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-30 21:00:08 +0000
committerPaul Phillips <paulp@improving.org>2011-03-30 21:00:08 +0000
commit96965c4459c318afd97b4024f8509a5c4988a3d0 (patch)
treef9f807a31c597d448e1ea1240ece35f49b5af658 /src/library/scala/Option.scala
parent386d5068471809d906d3db3aa56ed5f9352250c2 (diff)
downloadscala-96965c4459c318afd97b4024f8509a5c4988a3d0.tar.gz
scala-96965c4459c318afd97b4024f8509a5c4988a3d0.tar.bz2
scala-96965c4459c318afd97b4024f8509a5c4988a3d0.zip
Addressing most of the warnings revealed by the...
Addressing most of the warnings revealed by the patch to warn about unknown scaladoc variables. Updated and reran genprod. No review.
Diffstat (limited to 'src/library/scala/Option.scala')
-rw-r--r--src/library/scala/Option.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/Option.scala b/src/library/scala/Option.scala
index ef2cbcfd31..c2b1764fdb 100644
--- a/src/library/scala/Option.scala
+++ b/src/library/scala/Option.scala
@@ -21,7 +21,7 @@ object Option {
*/
def apply[A](x: A): Option[A] = if (x == null) None else Some(x)
- /** An Option factory which returns $none in a manner consistent with
+ /** An Option factory which returns `None` in a manner consistent with
* the collections hierarchy.
*/
def empty[A] : Option[A] = None