Span: Fix doxygen tags.

pull/7828/head
Vincent Coubard 2018-08-23 09:02:28 +01:00
parent 4e7fa91b94
commit 6b08320573
1 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ namespace mbed {
* into a single object. Span can replace the traditional pair of pointer and * into a single object. Span can replace the traditional pair of pointer and
* size arguments passed as array definition in function calls. * size arguments passed as array definition in function calls.
* *
* @paragraph Operations * @par Operations
* *
* Span objects can be copied and assigned like regular value types with the help * Span objects can be copied and assigned like regular value types with the help
* of copy constructor and copy assignment (=) operator. * of copy constructor and copy assignment (=) operator.
@ -52,7 +52,7 @@ namespace mbed {
* Span can be sliced from the beginning of the sequence (first()), from the end * Span can be sliced from the beginning of the sequence (first()), from the end
* of the sequence (last()) or from an arbitrary point of the sequence (subspan()). * of the sequence (last()) or from an arbitrary point of the sequence (subspan()).
* *
* @paragraph Size encoding * @par Size encoding
* *
* The size of the sequence can be encoded in the type itself or in the value of * The size of the sequence can be encoded in the type itself or in the value of
* the instance with the help of the template parameter Extent: * the instance with the help of the template parameter Extent:
@ -69,7 +69,7 @@ namespace mbed {
* instances can view invalid sequence (empty and NULL pointer). The function * instances can view invalid sequence (empty and NULL pointer). The function
* empty() helps client code to decide if valid content is being viewed or not. * empty() helps client code to decide if valid content is being viewed or not.
* *
* @paragraph Example * @par Example
* *
* - Encoding fixed size array: Array values in parameter decays automatically * - Encoding fixed size array: Array values in parameter decays automatically
* to pointer which leaves room for subtitle bugs: * to pointer which leaves room for subtitle bugs: