Skip to content

Commit 5e7ce5f

Browse files
committed
[platform] Update doxygen errors from @note to @note
1 parent 0b5b6cb commit 5e7ce5f

13 files changed

+27
-27
lines changed

platform/CThunk.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ typedef void (*CThunkEntry)(void);
7777
/**
7878
* Class for created a pointer with data bound to it
7979
*
80-
* @Note Synchronization level: Not protected
80+
* @note Synchronization level: Not protected
8181
* @ingroup platform
8282
*/
8383
template<class T>

platform/CallChain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace mbed {
2727
* sequence using CallChain::call(). Used mostly by the interrupt chaining code,
2828
* but can be used for other purposes.
2929
*
30-
* @Note Synchronization level: Not protected
30+
* @note Synchronization level: Not protected
3131
*
3232
* Example:
3333
* @code

platform/CircularBuffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace mbed {
2323

2424
/** Templated Circular buffer class
2525
*
26-
* @Note Synchronization level: Interrupt safe
26+
* @note Synchronization level: Interrupt safe
2727
* @ingroup platform
2828
*/
2929
template<typename T, uint32_t BufferSize, typename CounterType = uint32_t>

platform/DirHandle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace mbed {
3838
* reflect this.
3939
*
4040
* @note to create a directory, @see Dir
41-
* @Note Synchronization level: Set by subclass
41+
* @note Synchronization level: Set by subclass
4242
* @ingroup platform
4343
*/
4444
class DirHandle {

platform/FileLike.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace mbed {
2828
* A file-like object is one that can be opened with fopen by
2929
* fopen("/name", mode).
3030
*
31-
* @Note Synchronization level: Set by subclass
31+
* @note Synchronization level: Set by subclass
3232
* @ingroup platform
3333
*/
3434
class FileLike : public FileHandle, public FileBase {

platform/FileSystemLike.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace mbed {
3131
* Implementations must define at least open (the default definitions
3232
* of the rest of the functions just return error values).
3333
*
34-
* @Note Synchronization level: Set by subclass
34+
* @note Synchronization level: Set by subclass
3535
* @ingroup platform
3636
*/
3737
class FileSystemLike : public FileBase {

platform/LocalFileSystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class LocalFileHandle : public FileHandle {
6767
* mbed Microcontroller. Once created, the standard C file access functions are used to open,
6868
* read and write files.
6969
*
70-
* @Note Synchronization level: Thread safe
70+
* @note Synchronization level: Thread safe
7171
*
7272
* Example:
7373
* @code

platform/SingletonPtr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ inline static void singleton_unlock(void)
5959

6060
/** Utility class for creating an using a singleton
6161
*
62-
* @Note Synchronization level: Thread safe
62+
* @note Synchronization level: Thread safe
6363
*
64-
* @Note: This class must only be used in a static context -
64+
* @note: This class must only be used in a static context -
6565
* this class must never be allocated or created on the
6666
* stack.
6767
*
68-
* @Note: This class is lazily initialized on first use.
68+
* @note: This class is lazily initialized on first use.
6969
* This class is a POD type so if it is not used it will
7070
* be garbage collected.
7171
* @ingroup platform

platform/Stream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern char* mbed_gets(char *s, int size, FILE *_file);
3232

3333
/** File stream
3434
*
35-
* @Note Synchronization level: Set by subclass
35+
* @note Synchronization level: Set by subclass
3636
* @ingroup platform
3737
*/
3838
class Stream : public FileLike {

platform/Transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ typedef struct {
3737

3838
/** Transaction class defines a transaction.
3939
*
40-
* @Note Synchronization level: Not protected
40+
* @note Synchronization level: Not protected
4141
* @ingroup platform
4242
*/
4343
template<typename Class>

0 commit comments

Comments
 (0)