Merge pull request #2354 from rbuch/develop

Fix typos in documentation
This commit is contained in:
Niels Lohmann 2020-08-14 06:04:56 +02:00 committed by GitHub
commit 772f37c12d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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