Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit db755a7

Browse files
committed
Minor doxygen annotation changes #3
1 parent b115fc1 commit db755a7

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

docs/concepts.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The following static data member definitions must be valid and have their specif
2828
|---------------------------|------------------|-------------------------------|
2929
|```X::encoded_block_values```|```std::size_t```|```Integral``` amount of values in ```EncodedBlock```|
3030
|```X::decoded_block_values```|```std::size_t```|```Integral``` amount of values in ```DecodedBlock```|
31-
|```X::encoded_block_bits```|```std::size_t```|```Integral``` amount of bits in ```EncodedBlock```|
32-
|```X::decoded_block_bits```|```std::size_t```|```Integral``` amount of bits in ```DecodedBlock```|
31+
|```X::encoded_block_bits```|```std::size_t```|```Integral``` bits amount in ```EncodedBlock```|
32+
|```X::decoded_block_bits```|```std::size_t```|```Integral``` bits amount in ```DecodedBlock```|
3333

3434
The following expressions must be valid and have their specified effects
3535

include/nil/crypto3/codec/algorithm/codec.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace nil {
1717
* @addtogroup codec Encoding & Decoding
1818
*
1919
* @addtogroup codec_algorithms Algorithms
20-
* @ingroup codec
20+
* @addtogroup codec
2121
* @brief Encoding algorithms are meant to provide encoding interface similar to STL algorithms' one.
2222
*/
2323
}

include/nil/crypto3/codec/algorithm/decode.hpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace nil {
2222
* @addtogroup codec Encoding & Decoding
2323
*
2424
* @addtogroup codec_algorithms Algorithms
25-
* @ingroup codec
25+
* @addtogroup codec
2626
* @brief Algorithms are meant to provide decoding interface similar to STL algorithms' one.
2727
*/
2828
}
@@ -32,7 +32,7 @@ namespace nil {
3232
* in the range, defined by [first, last), and inserts the result to
3333
* another range beginning at out.
3434
*
35-
* @ingroup codec_algorithms
35+
* @addtogroup codec_algorithms
3636
*
3737
* @tparam Decoder Must meet the requirements of Codec which determines the
3838
* particular algorithm to be used with range given.
@@ -64,7 +64,7 @@ namespace nil {
6464
* type convertible to the type satisfying SequenceContainer with the value
6565
* type satisfying Integral concept requirements.
6666
*
67-
* @ingroup codec_algorithms
67+
* @addtogroup codec_algorithms
6868
*
6969
* @tparam Decoder Must meet the requirements of Codec which determines the
7070
* particular algorithm to be used with range given.
@@ -95,7 +95,7 @@ namespace nil {
9595
* in the range, defined by rng and inserts the result to destination
9696
* range beginning at out.
9797
*
98-
* @ingroup codec_algorithms
98+
* @addtogroup codec_algorithms
9999
*
100100
* @tparam Decoder Must meet the requirements of Codec which determines the
101101
* particular algorithm to be used with range given.
@@ -125,7 +125,7 @@ namespace nil {
125125
* in the range, defined by rng and inserts the result to destination
126126
* range beginning at out.
127127
*
128-
* @ingroup codec_algorithms
128+
* @addtogroup codec_algorithms
129129
*
130130
* @tparam Decoder Must meet the requirements of Codec which determines the
131131
* particular algorithm to be used with range given.
@@ -154,7 +154,7 @@ namespace nil {
154154
* in the range, defined by rng and inserts the result to destination
155155
* range beginning at out.
156156
*
157-
* @ingroup codec_algorithms
157+
* @addtogroup codec_algorithms
158158
*
159159
* @tparam Decoder Must meet the requirements of Codec which determines the
160160
* particular algorithm to be used with range given.
@@ -184,7 +184,7 @@ namespace nil {
184184
* type convertible to the type satisfying SequenceContainer with the value
185185
* type satisfying Integral concept requirements.
186186
*
187-
* @ingroup codec_algorithms
187+
* @addtogroup codec_algorithms
188188
*
189189
* @tparam Decoder Must meet the requirements of Codec which determines the
190190
* particular algorithm to be used with range given.

include/nil/crypto3/codec/algorithm/encode.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace nil {
2424
* in the range, defined by [first, last), and inserts the result to
2525
* another range beginning at out.
2626
*
27-
* @ingroup codec_algorithms
27+
* @addtogroup codec_algorithms
2828
*
2929
* @tparam Encoder Must meet the requirements of Codec which determines the
3030
* particular algorithm to be used with range given.
@@ -56,7 +56,7 @@ namespace nil {
5656
* type convertible to the type satisfying SequenceContainer with the value
5757
* type satisfying Integral concept requirements.
5858
*
59-
* @ingroup codec_algorithms
59+
* @addtogroup codec_algorithms
6060
*
6161
* @tparam Encoder Must meet the requirements of Codec which determines the
6262
* particular algorithm to be used with range given.
@@ -86,7 +86,7 @@ namespace nil {
8686
* in the range, defined by [first, last) and returns the result with type
8787
* satisfying AccumulatorSet requirements.
8888
*
89-
* @ingroup codec_algorithms
89+
* @addtogroup codec_algorithms
9090
*
9191
* @tparam Encoder Must meet the requirements of Codec which determines the
9292
* particular algorithm to be used with range given.
@@ -117,7 +117,7 @@ namespace nil {
117117
* in the range, defined by rng and inserts the result to destination
118118
* range beginning at out.
119119
*
120-
* @ingroup codec_algorithms
120+
* @addtogroup codec_algorithms
121121
*
122122
* @tparam Encoder Must meet the requirements of Codec which determines the
123123
* particular algorithm to be used with range given.
@@ -147,7 +147,7 @@ namespace nil {
147147
* in the range, defined by rng and inserts the result to destination
148148
* range beginning at out.
149149
*
150-
* @ingroup codec_algorithms
150+
* @addtogroup codec_algorithms
151151
*
152152
* @tparam Encoder Must meet the requirements of Codec which determines the
153153
* particular algorithm to be used with range given.
@@ -177,7 +177,7 @@ namespace nil {
177177
* type convertible to the type satisfying SequenceContainer with the value
178178
* type satisfying Integral concept requirements.
179179
*
180-
* @ingroup codec_algorithms
180+
* @addtogroup codec_algorithms
181181
*
182182
* @tparam Encoder Must meet the requirements of Codec which determines the
183183
* particular algorithm to be used with range given.

0 commit comments

Comments
 (0)