@@ -68,7 +68,7 @@ namespace cycfi::elements
68
68
* A template class to handle horizontal alignment for elements.
69
69
*
70
70
* \tparam
71
- * Subject Base type, must meet the `concepts:: Element` concept, .
71
+ * Subject Base type, must meet the `Element` concept.
72
72
*/
73
73
template <concepts::Element Subject>
74
74
class halign_element : public proxy <Subject, align_element_base>
@@ -88,7 +88,7 @@ namespace cycfi::elements
88
88
* Aligns the enclosed element (subject) in the x-axis.
89
89
*
90
90
* \tparam Subject
91
- * The subject type, must meet the `concepts:: Element` concept.
91
+ * The subject type, must meet the `Element` concept.
92
92
*
93
93
* \param align
94
94
* The alignment value from 0.0 (left) to 1.0 (right).
@@ -111,7 +111,7 @@ namespace cycfi::elements
111
111
* Left-aligns the enclosed element (subject).
112
112
*
113
113
* \tparam Subject
114
- * The subject type, must meet the `concepts:: Element` concept.
114
+ * The subject type, must meet the `Element` concept.
115
115
*
116
116
* \param subject
117
117
* The subject to be aligned.
@@ -131,7 +131,7 @@ namespace cycfi::elements
131
131
* Center-aligns the enclosed element (subject).
132
132
*
133
133
* \tparam Subject
134
- * The subject type, must meet the `concepts:: Element` concept.
134
+ * The subject type, must meet the `Element` concept.
135
135
*
136
136
* \param subject
137
137
* The subject to be aligned.
@@ -151,7 +151,7 @@ namespace cycfi::elements
151
151
* Right-aligns the enclosed element (subject).
152
152
*
153
153
* \tparam Subject
154
- * The subject type, must meet the `concepts:: Element` concept.
154
+ * The subject type, must meet the `Element` concept.
155
155
*
156
156
* \param subject
157
157
* The subject to be aligned.
@@ -172,7 +172,7 @@ namespace cycfi::elements
172
172
* a subject.
173
173
*
174
174
* \tparam Subject
175
- * Subject type, must meet the `concepts:: Element` concept.
175
+ * Subject type, must meet the `Element` concept.
176
176
*
177
177
* \param align
178
178
* The initial alignment value.
@@ -213,7 +213,7 @@ namespace cycfi::elements
213
213
* A template class to handle vertical alignment for elements.
214
214
*
215
215
* \tparam
216
- * Subject Base type, must meet the `concepts:: Element` concept, .
216
+ * Subject Base type, must meet the `Element` concept.
217
217
*/
218
218
template <concepts::Element Subject>
219
219
class valign_element : public proxy <Subject, align_element_base>
@@ -233,7 +233,7 @@ namespace cycfi::elements
233
233
* Aligns the enclosed element (subject) in the y-axis.
234
234
*
235
235
* \tparam Subject
236
- * The subject type, must meet the `concepts:: Element` concept.
236
+ * The subject type, must meet the `Element` concept.
237
237
*
238
238
* \param align
239
239
* The alignment value from 0.0 (top) to 1.0 (bottom).
@@ -256,7 +256,7 @@ namespace cycfi::elements
256
256
* Top-aligns the enclosed element (subject).
257
257
*
258
258
* \tparam Subject
259
- * The subject type, must meet the `concepts:: Element` concept.
259
+ * The subject type, must meet the `Element` concept.
260
260
*
261
261
* \param subject
262
262
* The subject to be aligned.
@@ -276,7 +276,7 @@ namespace cycfi::elements
276
276
* Middle-aligns the enclosed element (subject).
277
277
*
278
278
* \tparam Subject
279
- * The subject type, must meet the `concepts:: Element` concept.
279
+ * The subject type, must meet the `Element` concept.
280
280
*
281
281
* \param subject
282
282
* The subject to be aligned.
@@ -296,7 +296,7 @@ namespace cycfi::elements
296
296
* Bottom-aligns the enclosed element (subject).
297
297
*
298
298
* \tparam Subject
299
- * The subject type, must meet the `concepts:: Element` concept.
299
+ * The subject type, must meet the `Element` concept.
300
300
*
301
301
* \param subject
302
302
* The subject to be aligned.
@@ -317,7 +317,7 @@ namespace cycfi::elements
317
317
* a subject.
318
318
*
319
319
* \tparam Subject
320
- * Subject type, must meet the `concepts:: Element` concept.
320
+ * Subject type, must meet the `Element` concept.
321
321
*
322
322
* \param align
323
323
* The initial alignment value.
@@ -355,7 +355,7 @@ namespace cycfi::elements
355
355
* \brief Create an element that is aligned to left and top.
356
356
*
357
357
* \tparam Subject
358
- * The subject type, must meet the `concepts:: Element` concept.
358
+ * The subject type, must meet the `Element` concept.
359
359
*
360
360
* \param subject
361
361
* The subject to be aligned.
@@ -373,7 +373,7 @@ namespace cycfi::elements
373
373
* \brief Create an element that is aligned to center and top.
374
374
*
375
375
* \tparam Subject
376
- * The subject type, must meet the `concepts:: Element` concept.
376
+ * The subject type, must meet the `Element` concept.
377
377
*
378
378
* \param subject
379
379
* The subject to be aligned.
@@ -391,7 +391,7 @@ namespace cycfi::elements
391
391
* \brief Create an element that is aligned to right and top.
392
392
*
393
393
* \tparam Subject
394
- * The subject type, must meet the `concepts:: Element` concept.
394
+ * The subject type, must meet the `Element` concept.
395
395
*
396
396
* \param subject
397
397
* The subject to be aligned.
@@ -409,7 +409,7 @@ namespace cycfi::elements
409
409
* \brief Create an element that is aligned to left and middle.
410
410
*
411
411
* \tparam Subject
412
- * The subject type, must meet the `concepts:: Element` concept.
412
+ * The subject type, must meet the `Element` concept.
413
413
*
414
414
* \param subject
415
415
* The subject to be aligned.
@@ -427,7 +427,7 @@ namespace cycfi::elements
427
427
* \brief Create an element that is aligned to center and middle.
428
428
*
429
429
* \tparam Subject
430
- * The subject type, must meet the `concepts:: Element` concept.
430
+ * The subject type, must meet the `Element` concept.
431
431
*
432
432
* \param subject
433
433
* The subject to be aligned.
@@ -445,7 +445,7 @@ namespace cycfi::elements
445
445
* \brief Create an element that is aligned to right and middle.
446
446
*
447
447
* \tparam Subject
448
- * The subject type, must meet the `concepts:: Element` concept.
448
+ * The subject type, must meet the `Element` concept.
449
449
*
450
450
* \param subject
451
451
* The subject to be aligned.
@@ -463,7 +463,7 @@ namespace cycfi::elements
463
463
* \brief Create an element that is aligned to left and bottom.
464
464
*
465
465
* \tparam Subject
466
- * The subject type, must meet the `concepts:: Element` concept.
466
+ * The subject type, must meet the `Element` concept.
467
467
*
468
468
* \param subject
469
469
* The subject to be aligned.
@@ -481,7 +481,7 @@ namespace cycfi::elements
481
481
* \brief Create an element that is aligned to center and bottom.
482
482
*
483
483
* \tparam Subject
484
- * The subject type, must meet the `concepts:: Element` concept.
484
+ * The subject type, must meet the `Element` concept.
485
485
*
486
486
* \param subject
487
487
* The subject to be aligned.
@@ -499,7 +499,7 @@ namespace cycfi::elements
499
499
* \brief Create an element that is aligned to right and bottom.
500
500
*
501
501
* \tparam Subject
502
- * The subject type, must meet the `concepts:: Element` concept.
502
+ * The subject type, must meet the `Element` concept.
503
503
*
504
504
* \param subject
505
505
* The subject to be aligned.
0 commit comments