From 7836f57bbd92e5dd777289b081e28e95b6e9fe63 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 2 Oct 2022 13:40:52 +0200 Subject: [PATCH] :ok_hand: apply suggestion --- docs/mkdocs/docs/integration/migration_guide.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/mkdocs/docs/integration/migration_guide.md b/docs/mkdocs/docs/integration/migration_guide.md index 95922a45e..ea9a43edc 100644 --- a/docs/mkdocs/docs/integration/migration_guide.md +++ b/docs/mkdocs/docs/integration/migration_guide.md @@ -53,11 +53,10 @@ function to use instead. #### JSON Pointers -- Comparing JSON Pointers with strings via [`operator==`](../api/json_pointer/operator_eq.md) and - [`operator!=`](../api/json_pointer/operator_ne.md) is deprecated since 3.11.2. To compare a - [`json_pointer`](../api/json_pointer/index.md) `p` with a string `s`, convert `s` to a `json_pointer` first and use - [`json_pointer::operator==`](../api/json_pointer/operator_eq.md) or - [`json_pointer::operator!=`](../api/json_pointer/operator_ne.md). +- Comparing JSON pointers with strings using the string overload of [`operator==`](../api/json_pointer/operator_eq.md) + and [`operator!=`](../api/json_pointer/operator_ne.md) is deprecated since 3.11.2. To compare a + [`json_pointer`](../api/json_pointer/index.md) `p` with a string `s`, convert `s` to a `json_pointer` first, then + compare the two JSON pointers. === "Deprecated"