Skip to content

Commit 7c4dbfa

Browse files
committed
Fix broken HTML link rendering in the rationale section of index.adoc
This replaces a raw `<a href...>`, which was rendered verbatim, with the AsciiDoc link syntax.
1 parent e19c647 commit 7c4dbfa

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

doc/modules/ROOT/pages/index.adoc

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,11 @@ an unsigned long `n`, the bit at position `i` of the bitset has the same value
4646
as `(n >> i) & 1`.
4747

4848
== Rationale
49-
Because of the proxy reference type, `dynamic_bitset` is not a <a
50-
href="https://en.cppreference.com/w/cpp/named_req/Container.html">Container</a>
51-
and its iterators do not satisfy the requirements for a LegacyForwardIterator.
52-
This means that its iterators are not usable with many standard algorithms.
53-
However, `dynamic_bitset` provides C++20 iterators which can be used with
54-
ranges.
49+
Because of the proxy reference type, `dynamic_bitset` is not a
50+
https://en.cppreference.com/w/cpp/named_req/Container.html[Container] and its
51+
iterators do not satisfy the requirements for a LegacyForwardIterator. This
52+
means that its iterators are not usable with many standard algorithms. However,
53+
`dynamic_bitset` provides C++20 iterators which can be used with ranges.
5554

5655
Some people prefer the name "toggle" to "flip". The name "flip" was chosen
5756
because that is the name used in `std::bitset`. In fact, most of the function

0 commit comments

Comments
 (0)