The ScalaDoc is supposed to show the first sentence about a member as its summary. 2.11.2 fixed a bug where the first period found was treated as a sentence end (#8672). A similar bug still occurs with acronyms ending in a period, such as "i.e.".
http://www.scala-lang.org/api/2.11.2/index.html#scala.concurrent.Future
The first line of Future.onSuccess shown is
When this future is completed successfully (i.e.
It should show instead
When this future is completed successfully (i.e. with a value), apply the provided partial function to the value if the partial function is defined at that value.