summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-09-02 15:09:50 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-09-02 15:09:50 +0900
commit14f0e4a4e4657fe0dc6512cf735c9c75201bd406 (patch)
tree11c479308cf7450e79ac283831f8777a8f3e5589 /doc
parent7ce5b21c1daa84a8e6d9af6876f3d007ec157efd (diff)
downloadmruby-14f0e4a4e4657fe0dc6512cf735c9c75201bd406.tar.gz
mruby-14f0e4a4e4657fe0dc6512cf735c9c75201bd406.zip
update string.h.md; ref #2931
Diffstat (limited to 'doc')
-rw-r--r--doc/api/mruby/string.h.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/mruby/string.h.md b/doc/api/mruby/string.h.md
index 1268792e0..7bf94df5b 100644
--- a/doc/api/mruby/string.h.md
+++ b/doc/api/mruby/string.h.md
@@ -69,7 +69,7 @@ Returns a concated string comprised of a Ruby string and a C string.
Returns a concated string comprised of a Ruby string and a C string(A shorter alternative to mrb_str_cat).
### mrb_str_append
```C
- mrb_value mrb_str_append(mrb_state *mrb, mrb_value str, mrb_value str2);
+ mrb_value mrb_str_append(mrb_state *mrb, mrb_value str1, mrb_value str2);
```
Adds str2 to the end of str1.
### mrb_str_cmp