summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-mrbc
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-08-25 10:53:39 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:51 +0900
commitb978231bdad790f349b6c008da4084f73041a733 (patch)
treee64dba75d85ab433a65f3e2efb8995ee27ecb999 /mrbgems/mruby-bin-mrbc
parentb7fe929232544120cb81615851b0315ec1a8b360 (diff)
downloadmruby-b978231bdad790f349b6c008da4084f73041a733.tar.gz
mruby-b978231bdad790f349b6c008da4084f73041a733.zip
Update usage description of `mrbc`.
Diffstat (limited to 'mrbgems/mruby-bin-mrbc')
-rw-r--r--mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c b/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c
index 3be40df76..98b4c042d 100644
--- a/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c
+++ b/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c
@@ -37,7 +37,7 @@ usage(const char *name)
"-v print version number, then turn on verbose mode",
"-g produce debugging information",
"-B<symbol> binary <symbol> output in C language format",
- "-S dump C struct (requires -B)",
+ "-S dump C struct (requires -B)",
"--remove-lv remove local variables",
"--verbose run at verbose mode",
"--version print the version",
@@ -46,7 +46,7 @@ usage(const char *name)
};
const char *const *p = usage_msg;
- printf("Usage: %s [switches] programfile\n", name);
+ printf("Usage: %s [switches] programfile...\n", name);
while (*p)
printf(" %s\n", *p++);
}