summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-06-06 14:30:42 +0000
committermichelou <michelou@epfl.ch>2007-06-06 14:30:42 +0000
commitcfb62d0b27dde4457b7072e6130c61dda5f5f243 (patch)
tree7e72326456c01a3bc14ca489b73221eecdca1605 /src
parent83d0d76b1273df16842e76741ac6b9644f79bd7f (diff)
downloadscala-cfb62d0b27dde4457b7072e6130c61dda5f5f243.tar.gz
scala-cfb62d0b27dde4457b7072e6130c61dda5f5f243.tar.bz2
scala-cfb62d0b27dde4457b7072e6130c61dda5f5f243.zip
fixed typo
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/CompilerCommand.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/scala/tools/nsc/CompilerCommand.scala b/src/compiler/scala/tools/nsc/CompilerCommand.scala
index 0f534c6338..eaafd7f6e0 100644
--- a/src/compiler/scala/tools/nsc/CompilerCommand.scala
+++ b/src/compiler/scala/tools/nsc/CompilerCommand.scala
@@ -41,8 +41,8 @@ class CompilerCommand(arguments: List[String], val settings: Settings,
.map(setting =>
format(setting.helpSyntax) + " " + setting.helpDescription)
.mkString("Usage: " + cmdName + " <options | source files>\n" +
- "where possible standard options include:\n",
- "\n",
+ "where possible standard options include:\n ",
+ "\n ",
"\n")
}
@@ -54,8 +54,8 @@ class CompilerCommand(arguments: List[String], val settings: Settings,
(settings.doc.value == setting.isDocOption))
.map(setting =>
format(setting.helpSyntax) + " " + setting.helpDescription)
- .mkString("Possible non-standard options include:\n",
- "\n",
+ .mkString("Possible non-standard options include:\n ",
+ "\n ",
"\n")
}