Skip to content

Commit d9d9186

Browse files
committed
Try different anchors
1 parent 2b24a03 commit d9d9186

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ define the macro `STRONG_TYPE_IMPORT_STD_LIBRARY=1`.
7373
7474
# <A name="modifiers"/> Modifiers:
7575
76-
* <A name="affine_point"/>`strong::affine_point<D>` allows instances to be
76+
* `strong::affine_point<D>`<A name="affine_point"/> allows instances to be
7777
subtracted (yielding a `D`) or to add or subtract a `D` to an instance.
7878
See [Affine Space](https://en.wikipedia.org/wiki/Affine_space). Examples of
7979
one dimentional affine points are pointer (with `D` being `ptrdiff_t`,) or
@@ -90,7 +90,7 @@ define the macro `STRONG_TYPE_IMPORT_STD_LIBRARY=1`.
9090
Available in `strong_type//affine_point.hpp`.
9191
9292
93-
* <A name="arithmetic"/>`strong::arithmetic` allows addition, subtraction,
93+
* `strong::arithmetic`<A name="arithmetic"/> allows addition, subtraction,
9494
multiplication, division and remainder of instances.
9595
9696
[`std::numeric_limits<T>`](https://en.cppreference.com/w/cpp/types/numeric_limits)
@@ -99,35 +99,35 @@ define the macro `STRONG_TYPE_IMPORT_STD_LIBRARY=1`.
9999
Available in `strong_type/arithmetic.hpp`.
100100
101101
102-
* <A name="bicrementable"/>`strong::bicrementable`. Obviously a made up word
102+
* `strong::bicrementable`<A name="bicrementable"/>. Obviously a made up word
103103
for the occation. Implements both
104104
[`strong::incrementable`](#incrementable) and
105105
[`strong::decrementable`](#decrementable).
106106
107107
Available in `strong_type/bicrementable.hpp`
108108
109109
110-
* <A name="bitarithmetic"/>`strong::bitarithmetic` allows bitwise `&`, bitwise
110+
* `strong::bitarithmetic`<A name="bitarithmetic"/> allows bitwise `&`, bitwise
111111
`|`, bitwise `^` and shift operations.
112112
113113
Available in `strong_type/bitarithmetic.hpp`.
114114
115115
116-
* <A name="boolean"/>`strong::boolean` provides
116+
* `strong::boolean`<A name="boolean"/> provides
117117
`explicit operator bool() const`, providing the
118118
underlying type supports it.
119119
120120
Available in `strong_type/boolean.hpp`.
121121
122122
123-
* <A name="convertible_to"/>`strong::convertible_to<Ts...>` provides an
123+
* `strong::convertible_to<Ts...>`<A name="convertible_to"/> provides an
124124
`explicit operator Ts() const` for each type `Ts`, providing the underlying
125125
type supports it.
126126
127127
Available in `strong_type/convertible_to.hpp`.
128128
129129
130-
* <A name="decrementable"/>`strong::decrementable`. Provides
130+
* `strong::decrementable`<A name="decrementable"/>. Provides
131131
[`operator--`](https://en.cppreference.com/w/cpp/language/operator_incdec) for
132132
the strong type, using the operator of the underlying type.
133133

0 commit comments

Comments
 (0)