File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ namespace mbed {
39
39
* into a single object. Span can replace the traditional pair of pointer and
40
40
* size arguments passed as array definition in function calls.
41
41
*
42
- * @paragraph Operations
42
+ * @par Operations
43
43
*
44
44
* Span objects can be copied and assigned like regular value types with the help
45
45
* of copy constructor and copy assignment (=) operator.
@@ -52,7 +52,7 @@ namespace mbed {
52
52
* Span can be sliced from the beginning of the sequence (first()), from the end
53
53
* of the sequence (last()) or from an arbitrary point of the sequence (subspan()).
54
54
*
55
- * @paragraph Size encoding
55
+ * @par Size encoding
56
56
*
57
57
* The size of the sequence can be encoded in the type itself or in the value of
58
58
* the instance with the help of the template parameter Extent:
@@ -69,7 +69,7 @@ namespace mbed {
69
69
* instances can view invalid sequence (empty and NULL pointer). The function
70
70
* empty() helps client code to decide if valid content is being viewed or not.
71
71
*
72
- * @paragraph Example
72
+ * @par Example
73
73
*
74
74
* - Encoding fixed size array: Array values in parameter decays automatically
75
75
* to pointer which leaves room for subtitle bugs:
You can’t perform that action at this time.
0 commit comments