summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-10-15 09:47:23 +0900
committerGitHub <[email protected]>2021-10-15 09:47:23 +0900
commit0b095406bf52589e57dc9e7211f981e0a79f7f64 (patch)
treebf2158e22db1a2b6042233189e10e16213f84acc
parenta9a2dcd3ccae06b8b47c557eaa098a301197d926 (diff)
parenta3da482683b67ad2cb5ed045dd60e0b25876687d (diff)
downloadmruby-0b095406bf52589e57dc9e7211f981e0a79f7f64.tar.gz
mruby-0b095406bf52589e57dc9e7211f981e0a79f7f64.zip
Merge pull request #5558 from jbampton/fix-grammar
Fix grammar in doc/guides/mrbgems.md
-rw-r--r--doc/guides/mrbgems.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guides/mrbgems.md b/doc/guides/mrbgems.md
index c08a09f4e..03f8829e1 100644
--- a/doc/guides/mrbgems.md
+++ b/doc/guides/mrbgems.md
@@ -256,7 +256,7 @@ By default, `/...absolute path.../{GEM_NAME}/include` will be exported.
So it is recommended not to put GEM's local header files on include/.
These exports are retroactive.
-For example: when B depends to C and A depends to B, A will get include paths exported by C.
+For example: when B depends on C and A depends on B, A will get include paths exported by C.
Exported include_paths are automatically appended to GEM local include_paths by rake.
You can use `spec.export_include_paths` accessor if you want more complex build.