diff options
| author | Ralph Desir <[email protected]> | 2015-06-05 02:54:11 -0400 |
|---|---|---|
| committer | Ralph Desir <[email protected]> | 2015-06-05 02:54:11 -0400 |
| commit | 0f93d9b7dbdc74f485617051b5db81db09c7b726 (patch) | |
| tree | b7a6ab1c35dac0df85ebb10be88412ebec33bb3e /doc/api | |
| parent | e1795cb72dad87c163a38a59915b86ac83c09563 (diff) | |
| download | mruby-0f93d9b7dbdc74f485617051b5db81db09c7b726.tar.gz mruby-0f93d9b7dbdc74f485617051b5db81db09c7b726.zip | |
Update array.h.md
Diffstat (limited to 'doc/api')
| -rw-r--r-- | doc/api/array.h.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/array.h.md b/doc/api/array.h.md index 33466e149..e1fb0003d 100644 --- a/doc/api/array.h.md +++ b/doc/api/array.h.md @@ -9,7 +9,7 @@ In this example we read from a Ruby file inside C. The Ruby code will print what ```C
#include <stdio.h>
#include <mruby.h>
-#include "mruby/array.h" // Need the array header.
+#include "mruby/array.h" // Needs the array header.
#include "mruby/compile.h"
@@ -48,7 +48,7 @@ In this example we read from a Ruby file inside C. The Ruby code will print what ```C
#include <stdio.h>
#include <mruby.h>
-#include "mruby/array.h" // Need the array header.
+#include "mruby/array.h" // Needs the array header.
#include "mruby/compile.h"
int main(int argc, char *argv[])
@@ -99,7 +99,7 @@ called pop_ary that will return the array alone(just to be clean) and you should ```C
#include <stdio.h>
#include <mruby.h>
-#include "mruby/array.h" // Need the array header.
+#include "mruby/array.h" // Needs the array header.
#include "mruby/compile.h"
int main(int argc, char *argv[])
@@ -154,7 +154,7 @@ In this example we read from a Ruby file inside C. The Ruby code will print what ```C
#include <stdio.h>
#include <mruby.h>
-#include "mruby/array.h" // Need the array header.
+#include "mruby/array.h" // Needs the array header.
#include "mruby/compile.h"
int main(int argc, char *argv[])
@@ -207,7 +207,7 @@ In this example we read from a Ruby file inside C. The Ruby code will print what ```C
#include <stdio.h>
#include <mruby.h>
-#include "mruby/array.h" // Need the array header.
+#include "mruby/array.h" // Needs the array header.
#include "mruby/compile.h"
int main(int argc, char *argv[])
|
