docs: fix links, grammar and spelling in Markdown

This commit is contained in:
John Bampton
2023-05-06 04:43:14 +10:00
parent 9b4046f479
commit db3774ea45
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -114,4 +114,4 @@ To contribute to mruby, please refer to the [contribution guidelines][contributi
By contributing, you grant non-exclusive rights to your code under the MIT License.
[ISO-standard]: https://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
[contribution-guidelines]: https://github.com/mruby/mruby/blob/master/CONTRIBUTING.md
[contribution-guidelines]: CONTRIBUTING.md
+1 -1
View File
@@ -265,7 +265,7 @@ There is a `RubyGem` (gem for CRuby) named `mgem` that help you to
manage `mrbgems`. Try `gem install mgem`. `mgem` can show you the list
of registered `mrbgems`.
See doc/mrbgems/README.md for more option about mrbgems.
See [doc/guides/mrbgems.md](mrbgems.md) for more option about mrbgems.
### Mrbtest
+1 -1
View File
@@ -62,7 +62,7 @@ memory leak.
As of this writing, mruby automatically extend arena to remember
objects (See `MRB_GC_FIXED_ARENA` and `MRB_GC_ARENA_SIZE` in
doc/guides/mrbconf.md).
[doc/guides/mrbconf.md](mrbconf.md)).
If you create many objects in C functions, memory usage will increase, since
GC never kicks in. This memory usage may look like memory leaks, but will also
+1 -1
View File
@@ -1,6 +1,6 @@
# mrbgems
mrbgems is a library manager to integrate C and Ruby extension in an easy and
mrbgems is a library manager to integrate C and Ruby extensions in an easy and
standardised way into mruby. Conventionally, each mrbgem name is prefixed by
`mruby-`, e.g. `mruby-time` for a gem that provides `Time` class functionality.
+1 -1
View File
@@ -159,4 +159,4 @@ For better and faster random number generation.
Preallocated symbols are interned at compile-time. They can be accessed via symbols macros (e.g. `MRB_SYM()`).
See [Symbols](https://github.com/mruby/mruby/blob/master/doc/guides/symbol.md).
See [Symbols](guides/symbol.md).
+2 -2
View File
@@ -20,8 +20,8 @@ Date: Tue, 21 May 2013 04:31:30 GMT
## Requirement
- [mruby-io](https://github.com/mruby/mruby/tree/master/mrbgems/mruby-io) mrbgem
- [iij/mruby-mtest](https://github.com/iij/mruby-mtest) mrgbem to run tests
- [mruby-io](../mruby-io) mrbgem
- [iij/mruby-mtest](https://github.com/iij/mruby-mtest) mrbgem to run tests
- system must have RFC3493 basic socket interface
- and some POSIX API...