summaryrefslogtreecommitdiff
path: root/src/scaladoc
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@epfl.ch>2014-07-13 02:12:13 +0300
committerVlad Ureche <vlad.ureche@epfl.ch>2014-07-13 02:12:13 +0300
commit462fe6a7189dbfef7b2cf888f9716a80880c0d9f (patch)
tree5fe4059f014d31f16105ff3c7c164fb9a4c1f633 /src/scaladoc
parentb1b0b5c58ece31b767de93ec49455b72b3b229b7 (diff)
parent13054daa658484df30b71447dbe684f475537252 (diff)
downloadscala-462fe6a7189dbfef7b2cf888f9716a80880c0d9f.tar.gz
scala-462fe6a7189dbfef7b2cf888f9716a80880c0d9f.tar.bz2
scala-462fe6a7189dbfef7b2cf888f9716a80880c0d9f.zip
Merge pull request #3875 from pocket7878/issue/8699
SI-3875 Fix euro-sign in doc-source-url description
Diffstat (limited to 'src/scaladoc')
-rw-r--r--src/scaladoc/scala/tools/nsc/doc/Settings.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scaladoc/scala/tools/nsc/doc/Settings.scala b/src/scaladoc/scala/tools/nsc/doc/Settings.scala
index 67529f4178..02929c5ecb 100644
--- a/src/scaladoc/scala/tools/nsc/doc/Settings.scala
+++ b/src/scaladoc/scala/tools/nsc/doc/Settings.scala
@@ -66,7 +66,7 @@ class Settings(error: String => Unit, val printMsg: String => Unit = println(_))
val docsourceurl = StringSetting (
"-doc-source-url",
"url",
- "A URL pattern used to build links to template sources; use variables, for example: ?{TPL_NAME} ('Seq'), ?{TPL_OWNER} ('scala.collection'), ?{FILE_PATH} ('scala/collection/Seq')",
+ s"A URL pattern used to link to the source file; the following variables are available: €{TPL_NAME}, €{TPL_OWNER} and respectively €{FILE_PATH}. For example, for `scala.collection.Seq`, the variables will be expanded to `Seq`, `scala.collection` and respectively `scala/collection/Seq` (without the backquotes). To obtain a relative path for €{FILE_PATH} instead of an absolute one, use the ${sourcepath.name} setting.",
""
)