From 9e1eaf6d902c42d83b1376161d8efd85e4c361c3 Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Wed, 22 Nov 2023 14:02:30 -0500 Subject: [PATCH] Doc update --- doc/ref/jsonpath/jsonpath_expression/evaluate.md | 2 +- doc/ref/jsonpath/jsonpath_expression/select.md | 4 ++-- doc/ref/jsonpath/jsonpath_expression/update.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/ref/jsonpath/jsonpath_expression/evaluate.md b/doc/ref/jsonpath/jsonpath_expression/evaluate.md index 4a7a0c2172..61ec4905c3 100644 --- a/doc/ref/jsonpath/jsonpath_expression/evaluate.md +++ b/doc/ref/jsonpath/jsonpath_expression/evaluate.md @@ -24,7 +24,7 @@ callback repeatedly with the results. op - A function object that accepts a path and a reference to a Json value. + A function object that accepts a path and a reference to a Json value. It must have function call signature equivalent to
void fun(const Json::string_view_type& path, const Json& val); diff --git a/doc/ref/jsonpath/jsonpath_expression/select.md b/doc/ref/jsonpath/jsonpath_expression/select.md index eefb74e444..0b99dd0a3d 100644 --- a/doc/ref/jsonpath/jsonpath_expression/select.md +++ b/doc/ref/jsonpath/jsonpath_expression/select.md @@ -20,9 +20,9 @@ callback repeatedly with the results. op A function object that accepts a path and a reference to a Json value. It must have function call signature equivalent to -

+
void fun(const basic_path_node& path, const Json& val); -

+

result_options diff --git a/doc/ref/jsonpath/jsonpath_expression/update.md b/doc/ref/jsonpath/jsonpath_expression/update.md index cb22b34abc..0041bae18a 100644 --- a/doc/ref/jsonpath/jsonpath_expression/update.md +++ b/doc/ref/jsonpath/jsonpath_expression/update.md @@ -19,9 +19,9 @@ callback repeatedly with the results. op A function object that accepts a path and a reference to a Json value. It must have function call signature equivalent to -

+
void fun(const basic_path_node& path, Json& val); -

+