From 75e8fbac320acb8e034cf58d63f693de4426d6e9 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Thu, 9 Jul 2026 20:57:41 +0200 Subject: [PATCH] Documentation review: fix stale version-history placeholder in operator_ne.md (#5261) * :memo: Fix stale 3.12.x placeholder in operator_ne.md version history PR #5253 (removing the hand-written operator!= to fix #3868/P2468R2) merged after the earlier 3.12.x -> 3.13.0 global sweep, so its new version-history entries were written with the stale placeholder. Signed-off-by: Niels Lohmann * :bug: Fix stale twitter.com link in docset.json Signed-off-by: Niels Lohmann --------- Signed-off-by: Niels Lohmann --- docs/docset/docset.json | 2 +- docs/mkdocs/docs/api/basic_json/operator_ne.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docset/docset.json b/docs/docset/docset.json index 15cf4a7b1..0fd7bf9e9 100644 --- a/docs/docset/docset.json +++ b/docs/docset/docset.json @@ -4,7 +4,7 @@ "archive": "JSON_for_Modern_C++.tgz", "author": { "name": "Niels Lohmann", - "link": "https://twitter.com/nlohmann" + "link": "https://nlohmann.me" }, "aliases": ["nlohmann/json"] } diff --git a/docs/mkdocs/docs/api/basic_json/operator_ne.md b/docs/mkdocs/docs/api/basic_json/operator_ne.md index 3835bee48..5abb4a5af 100644 --- a/docs/mkdocs/docs/api/basic_json/operator_ne.md +++ b/docs/mkdocs/docs/api/basic_json/operator_ne.md @@ -91,7 +91,7 @@ Linear. ## Version history -1. Added in version 1.0.0. Added C++20 member functions in version 3.11.0. Changed in version 3.12.x to remove +1. Added in version 1.0.0. Added C++20 member functions in version 3.11.0. Changed in version 3.13.0 to remove special-casing for `NaN` and `discarded` values; `operator!=` now consistently means `!(a == b)`. -2. Added in version 1.0.0. Added C++20 member functions in version 3.11.0. Changed in version 3.12.x to remove +2. Added in version 1.0.0. Added C++20 member functions in version 3.11.0. Changed in version 3.13.0 to remove special-casing for `NaN` and `discarded` values; `operator!=` now consistently means `!(a == b)`.