summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2016-03-14 20:55:09 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2016-03-14 20:55:09 -0700
commit99a82be91cbb85239f70508f6695c6b21fd3558c (patch)
treec58afef2398e2ab67182217c61a8b71a824087a6 /src/library
parentd209a377bd73b71cb791f1b262acfe4b20b993c1 (diff)
parent3983f4d275956a7f0f337ccdda4511447cba5f31 (diff)
downloadscala-99a82be91cbb85239f70508f6695c6b21fd3558c.tar.gz
scala-99a82be91cbb85239f70508f6695c6b21fd3558c.tar.bz2
scala-99a82be91cbb85239f70508f6695c6b21fd3558c.zip
Merge pull request #5037 from janekdb/topic/2.12.x-scaladoc-fix-Source-links
Fix Scaladoc links in scala.io.Source
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/io/Source.scala18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/library/scala/io/Source.scala b/src/library/scala/io/Source.scala
index c0ee5f6a75..7513b423a1 100644
--- a/src/library/scala/io/Source.scala
+++ b/src/library/scala/io/Source.scala
@@ -180,22 +180,20 @@ object Source {
}
/** An iterable representation of source data.
- * It may be reset with the optional `reset` method.
+ * It may be reset with the optional [[reset]] method.
*
- * Subclasses must supply [[scala.io.Source@iter the underlying iterator]].
+ * Subclasses must supply [[scala.io.Source.iter the underlying iterator]].
*
- * Error handling may be customized by overriding the [[scala.io.Source@report report]] method.
+ * Error handling may be customized by overriding the [[scala.io.Source.report report]] method.
*
- * The [[scala.io.Source@ch current input]] and [[scala.io.Source@pos position]],
- * as well as the [[scala.io.Source@next next character]] methods delegate to
- * [[scala.io.Source$Positioner the positioner]].
+ * The [[scala.io.Source.ch current input]] and [[scala.io.Source.pos position]],
+ * as well as the [[scala.io.Source.next next character]] methods delegate to
+ * [[scala.io.Source#Positioner the positioner]].
*
- * The default positioner encodes line and column numbers in the position passed to `report`.
+ * The default positioner encodes line and column numbers in the position passed to [[report]].
* This behavior can be changed by supplying a
- * [[scala.io.Source@withPositioning(pos:Source.this.Positioner):Source.this.type custom positioner]].
+ * [[scala.io.Source.withPositioning(pos:* custom positioner]].
*
- * @author Burak Emir
- * @version 1.0
*/
abstract class Source extends Iterator[Char] with Closeable {
/** the actual iterator */