summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/array.h.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/array.h.md b/doc/api/array.h.md
index 714eacda0..33466e149 100644
--- a/doc/api/array.h.md
+++ b/doc/api/array.h.md
@@ -1,4 +1,4 @@
-### mrb_ary_new()
+### mrb_ary_new
```C
mrb_value mrb_ary_new(mrb_state *mrb);
@@ -38,7 +38,7 @@ end
Example_Class.new
```
-### mrb_ary_push()
+### mrb_ary_push
```C
void mrb_ary_push(mrb_state*, mrb_value, mrb_value);
```
@@ -88,7 +88,7 @@ After compiling you should get these results.
Array
```
-## mrb_ary_pop()
+## mrb_ary_pop
```C
mrb_value mrb_ary_pop(mrb_state *mrb, mrb_value ary);
```
@@ -144,7 +144,7 @@ After compiling you should get these results.
Array
[70]
```
-## mrb_ary_ref()
+## mrb_ary_ref
```C
mrb_value mrb_ary_ref(mrb_state *mrb, mrb_value ary, mrb_int n);
```