summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2019-08-07 15:00:36 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2019-08-07 15:02:38 +0900
commit2e73fe5ea1ef5cb6cb73be8a5b14c620378e2c27 (patch)
tree46bcf68746750ec6ce20be2febc99a7ea7c14b29 /doc
parenteceaa80de7ecb6648e3829a9258e1349679e5805 (diff)
downloadmruby-2e73fe5ea1ef5cb6cb73be8a5b14c620378e2c27.tar.gz
mruby-2e73fe5ea1ef5cb6cb73be8a5b14c620378e2c27.zip
Replace i.e. (means "that is") with e.g. (means "for example").
Diffstat (limited to 'doc')
-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 2aaf6f1fe..b01e89ff2 100644
--- a/doc/guides/compile.md
+++ b/doc/guides/compile.md
@@ -6,11 +6,11 @@ binaries.
## Prerequisites
To compile mruby out of the source code you need the following tools:
-* C Compiler (i.e. ```gcc```)
-* Linker (i.e. ```gcc```)
-* Archive utility (i.e. ```ar```)
-* Parser generator (i.e. ```bison```)
-* Ruby 1.8 or 1.9 (i.e. ```ruby``` or ```jruby```)
+* C Compiler (e.g. ```gcc```)
+* Linker (e.g. ```gcc```)
+* Archive utility (e.g. ```ar```)
+* Parser generator (e.g. ```bison```)
+* Ruby 1.8 or 1.9 (e.g. ```ruby``` or ```jruby```)
Optional:
* GIT (to update mruby source and integrate mrbgems easier)
@@ -463,7 +463,7 @@ linking with *build/i386/lib/libmruby_core.a*
### Minimal Library
To build a minimal mruby library you need to use the Cross Compiling
-feature due to the reason that there are functions (i.e. stdio) which
+feature due to the reason that there are functions (e.g. stdio) which
can't be disabled for the main build.
```ruby
@@ -477,7 +477,7 @@ end
This configuration defines a cross compile build called 'Minimal' which
is using the GCC and compiles for the host machine. It also disables
-all usages of stdio and doesn't compile any binaries (i.e. mrbc).
+all usages of stdio and doesn't compile any binaries (e.g. mrbc).
## Test Environment