From 8904546300ddc8b6e77618b1ae3197c963cfeb4c Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sat, 23 Jul 2022 18:20:18 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Florian Albrechtskirchinger --- docs/mkdocs/docs/api/basic_json/operator_eq.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/mkdocs/docs/api/basic_json/operator_eq.md b/docs/mkdocs/docs/api/basic_json/operator_eq.md index 92476f476..b4d61b637 100644 --- a/docs/mkdocs/docs/api/basic_json/operator_eq.md +++ b/docs/mkdocs/docs/api/basic_json/operator_eq.md @@ -101,8 +101,8 @@ Linear. !!! note "Comparing different `basic_json` specializations" - Comparing different `basic_json` specializations can have surprising results. For instance, comparing the JSON - objects + Comparing different `basic_json` specializations can have surprising effects. For instance, the result of comparing + the JSON objects ```json { @@ -120,7 +120,7 @@ Linear. } ``` - depends on whether [`nlohmann::json`](../json.md) order [`nlohmann::ordered_json`](../ordered_json.md) is used: + depends on whether [`nlohmann::json`](../json.md) or [`nlohmann::ordered_json`](../ordered_json.md) is used: ```cpp --8<-- "examples/operator__equal__specializations.cpp"