From c74d101f364d7e1bf8c816e4f41c266426fc6b15 Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Wed, 11 Dec 2024 13:29:06 -0500 Subject: [PATCH] custom functions doc --- CHANGELOG.md | 2 +- doc/ref/jmespath/make_expression.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba49d2846..2f2d0a1e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,7 +50,7 @@ constructed with json j{jsoncons::null_arg}; ``` -- Custom jmespath functions are now supported via PR #560 +- Custom jmespath functions are now supported thanks to PR #560 0.178.0 ------- diff --git a/doc/ref/jmespath/make_expression.md b/doc/ref/jmespath/make_expression.md index 79df6110d..7b67848fe 100644 --- a/doc/ref/jmespath/make_expression.md +++ b/doc/ref/jmespath/make_expression.md @@ -15,7 +15,7 @@ jmespath_expression make_expression(const json::string_view_type& expr, std::error_code& ec); template -jmespath_expression make_expression(const Json::string_view_type& expr, (3) (since 1.0.0) +jmespath_expression make_expression(const Json::string_view_type& expr, (3) (since 1.0.0) const custom_functions& funcs, std::error_code& ec) ```