From 2fc10f84dd167ad32efcecfac62d1c92ae7584d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C3=B6lfchen?= <115360611+W-lfchen@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:10:07 +0200 Subject: [PATCH] docs: improve wording --- docs/src/expression_language.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/expression_language.md b/docs/src/expression_language.md index b803c9b6..31b7725b 100644 --- a/docs/src/expression_language.md +++ b/docs/src/expression_language.md @@ -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`).