summaryrefslogtreecommitdiffhomepage
path: root/doc/api
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api')
-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;
}