summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2016-03-13 22:04:41 +0000
committerJanek Bogucki <janekdb@gmail.com>2016-03-13 22:04:41 +0000
commit3983f4d275956a7f0f337ccdda4511447cba5f31 (patch)
tree6eb138d5a9455645d52aeb27a56d25d3f3d5dd0e /src
parent7a21ee22c34969912132e83fe3bd674f6c804840 (diff)
downloadscala-3983f4d275956a7f0f337ccdda4511447cba5f31.tar.gz
scala-3983f4d275956a7f0f337ccdda4511447cba5f31.tar.bz2
scala-3983f4d275956a7f0f337ccdda4511447cba5f31.zip
Fix Scaladoc links in scala.io.Source
The link to iter will work if the restriction to showing only public members is lifted in the visibility section.
Diffstat (limited to 'src')
-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 */