Skip to content

Commit 67d822d

Browse files
committed
Fix typos in documentation
1 parent 2984202 commit 67d822d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

doc/mkdocs/docs/features/element_access/checked_access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The return value is a reference, so it can be modify the original value.
4545
}
4646
```
4747

48-
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.
48+
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.
4949

5050
??? example
5151

doc/mkdocs/docs/features/element_access/unchecked_access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The return value is a reference, so it can be modify the original value. In case
4747
}
4848
```
4949

50-
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`.
50+
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`.
5151

5252
??? example
5353

0 commit comments

Comments
 (0)