summaryrefslogtreecommitdiffhomepage
path: root/doc/guides/compile.md
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-03-09 04:35:03 +1000
committerJohn Bampton <[email protected]>2021-03-09 04:35:03 +1000
commit3c1ce680a38ea4c57abc49ac16326591d2289f06 (patch)
tree33a899870963cbda1eed8c8f47b92388d01d6dea /doc/guides/compile.md
parentf2b352944106e61c5b3026f01ded737183a94292 (diff)
downloadmruby-3c1ce680a38ea4c57abc49ac16326591d2289f06.tar.gz
mruby-3c1ce680a38ea4c57abc49ac16326591d2289f06.zip
chore: fix grammar
Diffstat (limited to 'doc/guides/compile.md')
-rw-r--r--doc/guides/compile.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/guides/compile.md b/doc/guides/compile.md
index ef1abf88f..7a2ff2a44 100644
--- a/doc/guides/compile.md
+++ b/doc/guides/compile.md
@@ -19,10 +19,10 @@ Optional:
* Bison (to compile `mrbgems/mruby-compiler/core/parse.y`)
* gperf (to compile `mrbgems/mruby-compiler/core/keywords`)
-Note that `bison` bundled with MacOS is too old to compile `mruby`.
+Note that `bison` bundled with macOS is too old to compile `mruby`.
Try `brew install bison` and follow the instruction shown to update
-the `$PATH` to compile `mruby`. We also encourage to upgrade `ruby`
-on MacOS in similar manner.
+the `$PATH` to compile `mruby`. We also encourage you to upgrade `ruby`
+on macOS in similar manner.
## Build
@@ -52,7 +52,7 @@ All tools necessary to compile mruby can be set or modified here.
We wish you submit a pull-request to `build_config/PLATFORM.rb`, once you
created a new configuration for a new platform.
-Inside of the configuration file, the following options can be
+Inside the configuration file, the following options can be
configured based on your environment.
### Toolchains
@@ -135,7 +135,7 @@ end
C Compiler has header searcher to detect installed library.
-If you need a include path of header file use `search_header_path`:
+If you need an include path of header file use `search_header_path`:
```ruby
# Searches ```iconv.h```.
@@ -311,7 +311,7 @@ conf.enable_cxx_exception
#### C++ exception disabling.
-If your compiler does not support C++ and you want to ensure
+If your compiler does not support C++, and you want to ensure
you don't use mrbgem written in C++, you can explicitly disable
C++ exception, add following:
@@ -360,7 +360,7 @@ directory.
### Mrbtest in Cross-Compilation
-In cross compilation, you can run `mrbtest` on emulator if
+In cross compilation, you can run `mrbtest` on an emulator if
you have it by changing configuration of test runner.
```ruby