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
41e69319
Commit
41e69319
authored
9 years ago
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2773 from syohex/fix-misspelling
Fix misspellings in document
parents
5c25a9a6
c261c015
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
doc/api/mruby.h.md
doc/api/mruby.h.md
+1
-1
doc/compile/README.md
doc/compile/README.md
+2
-2
doc/debugger/README.md
doc/debugger/README.md
+1
-1
doc/mrbconf/README.md
doc/mrbconf/README.md
+1
-1
doc/mrbgems/README.md
doc/mrbgems/README.md
+1
-1
No files found.
doc/api/mruby.h.md
View file @
41e69319
...
...
@@ -49,7 +49,7 @@ It returns number of function retrieved.
char|mruby type|retrieve types|note
:---:|----------|--------------|---
`o`
|
`Object`
|
`mrb_value`
|Could be used to retr
ei
ve any type of argument
`o`
|
`Object`
|
`mrb_value`
|Could be used to retr
ie
ve any type of argument
`C`
|
`Class`
/
`Module`
|
`mrb_value`
|
`S`
|
`String`
|
`mrb_value`
|
`A`
|
`Array`
|
`mrb_value`
|
...
...
This diff is collapsed.
Click to expand it.
doc/compile/README.md
View file @
41e69319
...
...
@@ -245,7 +245,7 @@ mruby can use C++ exception to raise exception internally.
It is called C++ ABI mode.
By using C++ exception it can release C++ stack object correctly.
Whenever you mix C++ code C++ ABI mode would be enabled automatically.
If you need to enable C++ ABI mode explicity add the following:
If you need to enable C++ ABI mode explicit
l
y add the following:
```
ruby
conf
.
enable_cxx_abi
```
...
...
@@ -409,7 +409,7 @@ like this:
An extra directory is created for the target platform. In case you
compile for *i386* a directory called *i386* is created under the
build direc
ot
ry.
build direc
to
ry.
The cross compilation workflow starts in the same way as the normal
compilation by compiling all *native* libraries and binaries.
...
...
This diff is collapsed.
Click to expand it.
doc/debugger/README.md
View file @
41e69319
...
...
@@ -144,7 +144,7 @@ Example:
(foo.rb:1) continue 3
```
This will resume the pro
f
ram and stop it at the third breakpoint.
This will resume the pro
g
ram and stop it at the third breakpoint.
#### Delete Command
...
...
This diff is collapsed.
Click to expand it.
doc/mrbconf/README.md
View file @
41e69319
...
...
@@ -3,7 +3,7 @@
## How to use these macros.
You can use mrbconfs with following ways:
*
Write them in
`mrbconf.h`
.
*
Using compiler flags is prefered when building a cross binaries or multiple mruby binaries
*
Using compiler flags is prefer
r
ed when building a cross binaries or multiple mruby binaries
since it's easier to use different mrbconf per each
`MRuby::Build`
.
*
Most flags can be enabled by just commenting in.
*
Pass them as compiler flags.
...
...
This diff is collapsed.
Click to expand it.
doc/mrbgems/README.md
View file @
41e69319
...
...
@@ -200,7 +200,7 @@ the following options additionally inside of your GEM specification:
*
`spec.test_objs`
(Object test files for integration into mrbtest)
*
`spec.test_preload`
(Initialization files for mrbtest)
### include_paths and depen
c
ency
### include_paths and depen
d
ency
Your GEM can export include paths to another GEMs that depends on your GEM.
By default,
`/...absolute path.../{GEM_NAME}/include`
will be exported.
...
...
This diff is collapsed.
Click to expand it.
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