From 7c4dbfa2ac063cd6af8c6b7cb10bd70e353f590f Mon Sep 17 00:00:00 2001 From: Gennaro Prota Date: Fri, 31 Oct 2025 11:15:18 +0100 Subject: [PATCH] Fix broken HTML link rendering in the rationale section of index.adoc This replaces a raw ``, which was rendered verbatim, with the AsciiDoc link syntax. --- doc/modules/ROOT/pages/index.adoc | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/modules/ROOT/pages/index.adoc b/doc/modules/ROOT/pages/index.adoc index 84f5ec4..d2c46f7 100644 --- a/doc/modules/ROOT/pages/index.adoc +++ b/doc/modules/ROOT/pages/index.adoc @@ -46,12 +46,11 @@ an unsigned long `n`, the bit at position `i` of the bitset has the same value as `(n >> i) & 1`. == Rationale -Because of the proxy reference type, `dynamic_bitset` is not a Container -and its iterators do not satisfy the requirements for a LegacyForwardIterator. -This means that its iterators are not usable with many standard algorithms. -However, `dynamic_bitset` provides C++20 iterators which can be used with -ranges. +Because of the proxy reference type, `dynamic_bitset` is not a +https://en.cppreference.com/w/cpp/named_req/Container.html[Container] and its +iterators do not satisfy the requirements for a LegacyForwardIterator. This +means that its iterators are not usable with many standard algorithms. However, +`dynamic_bitset` provides C++20 iterators which can be used with ranges. Some people prefer the name "toggle" to "flip". The name "flip" was chosen because that is the name used in `std::bitset`. In fact, most of the function