From 7562499f7dfcf7b32c51a9091674a8cf5a1ef1b4 Mon Sep 17 00:00:00 2001 From: Igor Moreno Date: Sun, 5 May 2013 11:19:44 +0300 Subject: Scaladoc: fixing small typo in PartialFunction.scala Fixing a one-letter typo in the documentation of PartialFunction.scala (from "an plain" to "a plain"). --- src/library/scala/PartialFunction.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library/scala/PartialFunction.scala b/src/library/scala/PartialFunction.scala index 7ff5a33586..9ff648a05a 100644 --- a/src/library/scala/PartialFunction.scala +++ b/src/library/scala/PartialFunction.scala @@ -81,7 +81,7 @@ trait PartialFunction[-A, +B] extends (A => B) { self => override def andThen[C](k: B => C): PartialFunction[A, C] = new AndThen[A, B, C] (this, k) - /** Turns this partial function into an plain function returning an `Option` result. + /** Turns this partial function into a plain function returning an `Option` result. * @see Function.unlift * @return a function that takes an argument `x` to `Some(this(x))` if `this` * is defined for `x`, and to `None` otherwise. -- cgit v1.2.3