Skip to content

Commit

Permalink
docs: improve wording
Browse files Browse the repository at this point in the history
  • Loading branch information
w-lfchen committed Sep 7, 2024
1 parent 83cd301 commit 13e9976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/expression_language.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ Supported currently are the following features:
- if the left side is `""` or a JSON `null`, then returns the right side,
otherwise evaluates to the left side.
- Safe Access operator (`?.`) or (`?.[index]`)
- if the left side is an empty string a JSON `null`, then return `null`. Otherwise,
attempt to index. Note that indexing an empty JSON string (`'""'`) is an error here.
- if the left side is an empty string or a JSON `null`, then return `null`. Otherwise,
attempt to index. Note that indexing an empty JSON string (`'""'`) is an error.
- This can still cause an error to occur if the left hand side exists but is
not an object or an array.
(`Number` or `String`).
Expand Down

0 comments on commit 13e9976

Please sign in to comment.