summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/ant/ScalaTool.scala
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-26 14:03:24 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2010-01-26 14:03:24 +0000
commit6441087c31b9f550bb36d6afac4cfc7d4292b7cd (patch)
treebd2ab9f8d5c013b3f90460e6ea621d13208c5dad /src/compiler/scala/tools/ant/ScalaTool.scala
parent6975d16800499815a07c80c6d4fe85c2de693d96 (diff)
downloadscala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.tar.gz
scala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.tar.bz2
scala-6441087c31b9f550bb36d6afac4cfc7d4292b7cd.zip
Fixed a number of faulty Scaladoc comments in l...
Fixed a number of faulty Scaladoc comments in library and compiler sources. No review.
Diffstat (limited to 'src/compiler/scala/tools/ant/ScalaTool.scala')
-rw-r--r--src/compiler/scala/tools/ant/ScalaTool.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/ant/ScalaTool.scala b/src/compiler/scala/tools/ant/ScalaTool.scala
index e7912d8b59..f9f97140aa 100644
--- a/src/compiler/scala/tools/ant/ScalaTool.scala
+++ b/src/compiler/scala/tools/ant/ScalaTool.scala
@@ -166,12 +166,12 @@ class ScalaTool extends MatchingTask {
\*============================================================================*/
/** Gets the value of the classpath attribute in a Scala-friendly form.
- * @returns The class path as a list of files. */
+ * @return The class path as a list of files. */
private def getUnixclasspath: String =
transposeVariableMarkup(classpath.mkString("", ":", "").replace('\\', '/'), "${", "}")
/** Gets the value of the classpath attribute in a Scala-friendly form.
- * @returns The class path as a list of files. */
+ * @return The class path as a list of files. */
private def getWinclasspath: String =
transposeVariableMarkup(classpath.mkString("", ";", "").replace('/', '\\'), "%", "%")