Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
716e7b81
Commit
716e7b81
authored
Dec 11, 2018
by
Hiroshi Mimaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed missing comma in mruby/mirb usage.
parent
e3ae0e4f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
+1
-1
mrbgems/mruby-bin-mruby/tools/mruby/mruby.c
mrbgems/mruby-bin-mruby/tools/mruby/mruby.c
+1
-1
No files found.
mrbgems/mruby-bin-mirb/tools/mirb/mirb.c
View file @
716e7b81
...
@@ -230,7 +230,7 @@ usage(const char *name)
...
@@ -230,7 +230,7 @@ usage(const char *name)
{
{
static
const
char
*
const
usage_msg
[]
=
{
static
const
char
*
const
usage_msg
[]
=
{
"switches:"
,
"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`"
,
"-r library same as `mruby -r`"
,
"-v print version number, then run in verbose mode"
,
"-v print version number, then run in verbose mode"
,
"--verbose run in verbose mode"
,
"--verbose run in verbose mode"
,
...
...
mrbgems/mruby-bin-mruby/tools/mruby/mruby.c
View file @
716e7b81
...
@@ -41,7 +41,7 @@ usage(const char *name)
...
@@ -41,7 +41,7 @@ usage(const char *name)
"switches:"
,
"switches:"
,
"-b load and execute RiteBinary (mrb) file"
,
"-b load and execute RiteBinary (mrb) file"
,
"-c check syntax only"
,
"-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"
,
"-e 'command' one line of script"
,
"-r library load the library before executing your script"
,
"-r library load the library before executing your script"
,
"-v print version number, then run in verbose mode"
,
"-v print version number, then run in verbose mode"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment