Skip to content

Commit 6b08320

Browse files
committed
Span: Fix doxygen tags.
1 parent 4e7fa91 commit 6b08320

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platform/Span.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace mbed {
3939
* into a single object. Span can replace the traditional pair of pointer and
4040
* size arguments passed as array definition in function calls.
4141
*
42-
* @paragraph Operations
42+
* @par Operations
4343
*
4444
* Span objects can be copied and assigned like regular value types with the help
4545
* of copy constructor and copy assignment (=) operator.
@@ -52,7 +52,7 @@ namespace mbed {
5252
* Span can be sliced from the beginning of the sequence (first()), from the end
5353
* of the sequence (last()) or from an arbitrary point of the sequence (subspan()).
5454
*
55-
* @paragraph Size encoding
55+
* @par Size encoding
5656
*
5757
* The size of the sequence can be encoded in the type itself or in the value of
5858
* the instance with the help of the template parameter Extent:
@@ -69,7 +69,7 @@ namespace mbed {
6969
* instances can view invalid sequence (empty and NULL pointer). The function
7070
* empty() helps client code to decide if valid content is being viewed or not.
7171
*
72-
* @paragraph Example
72+
* @par Example
7373
*
7474
* - Encoding fixed size array: Array values in parameter decays automatically
7575
* to pointer which leaves room for subtitle bugs:

0 commit comments

Comments
 (0)