From 67d822d951cf29336530d83fea7c5fb2d227adff Mon Sep 17 00:00:00 2001 From: Ronak Buch Date: Thu, 13 Aug 2020 15:44:58 -0400 Subject: [PATCH] Fix typos in documentation --- doc/mkdocs/docs/features/element_access/checked_access.md | 2 +- doc/mkdocs/docs/features/element_access/unchecked_access.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/mkdocs/docs/features/element_access/checked_access.md b/doc/mkdocs/docs/features/element_access/checked_access.md index 095dff2d6..19c75254d 100644 --- a/doc/mkdocs/docs/features/element_access/checked_access.md +++ b/doc/mkdocs/docs/features/element_access/checked_access.md @@ -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 diff --git a/doc/mkdocs/docs/features/element_access/unchecked_access.md b/doc/mkdocs/docs/features/element_access/unchecked_access.md index f8667c817..fff7f2b32 100644 --- a/doc/mkdocs/docs/features/element_access/unchecked_access.md +++ b/doc/mkdocs/docs/features/element_access/unchecked_access.md @@ -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