summaryrefslogtreecommitdiff
path: root/src/manual
diff options
context:
space:
mode:
Diffstat (limited to 'src/manual')
-rw-r--r--src/manual/scala/man1/scalap.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/manual/scala/man1/scalap.scala b/src/manual/scala/man1/scalap.scala
index 7d780ffdb8..465bc79037 100644
--- a/src/manual/scala/man1/scalap.scala
+++ b/src/manual/scala/man1/scalap.scala
@@ -18,7 +18,7 @@ object scalap extends Command {
val synopsis = Section("SYNOPSIS",
- CmdLine(" [ " & Argument("options") & " ] " & Argument("source file")))
+ CmdLine(" [ " & Argument("options") & " ] " & Argument("class name")))
val parameters = Section("PARAMETERS",
@@ -28,8 +28,8 @@ object scalap extends Command {
"Command line options. See " & Link(Bold("OPTIONS"), "#options") &
" below."),
Definition(
- Mono(Argument("source file")),
- "One class file to be decoded (such as " &
+ Mono(Argument("class name")),
+ "Full-qualified name of a class to be decoded (such as " &
Mono("hello.HelloWorld") & ").")))
val description = Section("DESCRIPTION",