summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorRalph Desir <[email protected]>2015-05-31 23:27:12 -0400
committerRalph Desir <[email protected]>2015-05-31 23:27:12 -0400
commit4959e4958abca0404c60fe54a4c700bfd1a25eb6 (patch)
tree890fa408f319ad6dab460d422ce7d443906a0568 /doc
parent7284d1d295c0eaaa2e36ce52e9dd65f8221ed8b2 (diff)
downloadmruby-4959e4958abca0404c60fe54a4c700bfd1a25eb6.tar.gz
mruby-4959e4958abca0404c60fe54a4c700bfd1a25eb6.zip
Update mruby.h.md
Diffstat (limited to 'doc')
-rw-r--r--doc/api/mruby.h.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/mruby.h.md b/doc/api/mruby.h.md
index 36712e5dc..88fa2c7e5 100644
--- a/doc/api/mruby.h.md
+++ b/doc/api/mruby.h.md
@@ -94,7 +94,7 @@ Creates a global function in ruby. If you're creating a gem it may look somethin
```C
mrb_value example_method(mrb_state* mrb, mrb_value self){
- puts("Executing example commad!");
+ puts("Executing example command!");
return self;
}