summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorRalph Desir <[email protected]>2015-06-05 02:43:54 -0400
committerRalph Desir <[email protected]>2015-06-05 02:43:54 -0400
commita3a18cd7a691b3382c41ae5e73ef85bcdbabca3d (patch)
tree6202d2cd70180c40d5a3e3d16d7924a208fe8f6a /doc
parent12b307396a9696d253232e7ac7c3c3a1cb53430c (diff)
downloadmruby-a3a18cd7a691b3382c41ae5e73ef85bcdbabca3d.tar.gz
mruby-a3a18cd7a691b3382c41ae5e73ef85bcdbabca3d.zip
Update array.h.md
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);
```