diff options
| author | Hiroshi Mimaki <[email protected]> | 2018-12-11 09:37:23 +0900 |
|---|---|---|
| committer | Hiroshi Mimaki <[email protected]> | 2018-12-11 09:37:23 +0900 |
| commit | 716e7b815ff8bff50226ce49759493aec4ef5103 (patch) | |
| tree | 7f05c3995a592be9bdf74ce4f679fac8e2b875a3 | |
| parent | e3ae0e4f2962418106875217adcd4f5971ce4689 (diff) | |
| download | mruby-716e7b815ff8bff50226ce49759493aec4ef5103.tar.gz mruby-716e7b815ff8bff50226ce49759493aec4ef5103.zip | |
Fixed missing comma in mruby/mirb usage.
| -rw-r--r-- | mrbgems/mruby-bin-mirb/tools/mirb/mirb.c | 2 | ||||
| -rw-r--r-- | mrbgems/mruby-bin-mruby/tools/mruby/mruby.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c b/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c index 8d7c719d8..9519d88bb 100644 --- a/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +++ b/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c @@ -230,7 +230,7 @@ usage(const char *name) { static const char *const usage_msg[] = { "switches:", - "-d set $DEBUG to true (same as `mruby -d`)" + "-d set $DEBUG to true (same as `mruby -d`)", "-r library same as `mruby -r`", "-v print version number, then run in verbose mode", "--verbose run in verbose mode", diff --git a/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c b/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c index caf8e78c2..498bedef2 100644 --- a/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +++ b/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c @@ -41,7 +41,7 @@ usage(const char *name) "switches:", "-b load and execute RiteBinary (mrb) file", "-c check syntax only", - "-d set debugging flags (set $DEBUG to true)" + "-d set debugging flags (set $DEBUG to true)", "-e 'command' one line of script", "-r library load the library before executing your script", "-v print version number, then run in verbose mode", |
