Commit 67d822d9 authored by Ronak Buch's avatar Ronak Buch

Fix typos in documentation

parent 29842026
...@@ -45,7 +45,7 @@ The return value is a reference, so it can be modify the original value. ...@@ -45,7 +45,7 @@ The return value is a reference, so it can be modify the original value.
} }
``` ```
When accessing an invalid index (i.e., and index greater than or equal to the array size) or the passed object key is non-existing, an exception is thrown. When accessing an invalid index (i.e., an index greater than or equal to the array size) or the passed object key is non-existing, an exception is thrown.
??? example ??? example
......
...@@ -47,7 +47,7 @@ The return value is a reference, so it can be modify the original value. In case ...@@ -47,7 +47,7 @@ The return value is a reference, so it can be modify the original value. In case
} }
``` ```
When accessing an invalid index (i.e., and index greater than or equal to the array size), the JSON array is resized such that the passed index is the new maximal index. Intermediate values are filled with `#!json null`. When accessing an invalid index (i.e., an index greater than or equal to the array size), the JSON array is resized such that the passed index is the new maximal index. Intermediate values are filled with `#!json null`.
??? example ??? example
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment