mirror of
https://github.com/espressif/openthread.git
synced 2026-09-13 04:30:08 +00:00
[docs] fix typos FLASE -> FALSE (#7389)
This commit is contained in:
@@ -69,7 +69,7 @@ enum DataLengthType : uint8_t
|
||||
* @param[in] aSecond A second byte.
|
||||
*
|
||||
* @retval TRUE if @p aFirst matches @p aSecond.
|
||||
* @retval FLASE if @p aFirst does not match @p aSecond.
|
||||
* @retval FALSE if @p aFirst does not match @p aSecond.
|
||||
*
|
||||
*/
|
||||
typedef bool (*ByteMatcher)(uint8_t aFirst, uint8_t aSecond);
|
||||
|
||||
@@ -139,7 +139,7 @@ public:
|
||||
* @param[in] aPointer The pointer to compare with.
|
||||
*
|
||||
* @retval TRUE If `Ptr` is equal to @p aPointer.
|
||||
* @retval FLASE If `Ptr` is not equal to @p aPointer.
|
||||
* @retval FALSE If `Ptr` is not equal to @p aPointer.
|
||||
*
|
||||
*/
|
||||
bool operator==(const Type *aPointer) const { return (mPointer == aPointer); }
|
||||
@@ -150,7 +150,7 @@ public:
|
||||
* @param[in] aPointer The pointer to compare with.
|
||||
*
|
||||
* @retval TRUE If `Ptr` is not equal to @p aPointer.
|
||||
* @retval FLASE If `Ptr` is equal to @p aPointer.
|
||||
* @retval FALSE If `Ptr` is equal to @p aPointer.
|
||||
*
|
||||
*/
|
||||
bool operator!=(const Type *aPointer) const { return (mPointer != aPointer); }
|
||||
@@ -161,7 +161,7 @@ public:
|
||||
* @param[in] aOther The other `Ptr` to compare with.
|
||||
*
|
||||
* @retval TRUE If `Ptr` is equal to @p aOther.
|
||||
* @retval FLASE If `Ptr` is not equal to @p aOther.
|
||||
* @retval FALSE If `Ptr` is not equal to @p aOther.
|
||||
*
|
||||
*/
|
||||
bool operator==(const Ptr &aOther) const { return (mPointer == aOther.mPointer); }
|
||||
@@ -172,7 +172,7 @@ public:
|
||||
* @param[in] aOther The other `Ptr` to compare with.
|
||||
*
|
||||
* @retval TRUE If `Ptr` is not equal to @p aOther.
|
||||
* @retval FLASE If `Ptr` is equal to @p aOther.
|
||||
* @retval FALSE If `Ptr` is equal to @p aOther.
|
||||
*
|
||||
*/
|
||||
bool operator!=(const Ptr &aOther) const { return (mPointer != aOther.mPointer); }
|
||||
|
||||
@@ -165,7 +165,7 @@ public:
|
||||
* This method indicates whether or not currently the "DNS/SRP Service" entry is added to the Thread Network Data.
|
||||
*
|
||||
* @retval TRUE The published DNS/SRP Service entry is added to the Thread Network Data.
|
||||
* @retval FLASE The entry is not added to Thread Network Data or there is no entry to publish.
|
||||
* @retval FALSE The entry is not added to Thread Network Data or there is no entry to publish.
|
||||
*
|
||||
*/
|
||||
bool IsDnsSrpServiceAdded(void) const { return mDnsSrpServiceEntry.IsAdded(); }
|
||||
@@ -246,7 +246,7 @@ public:
|
||||
* @param[in] aPrefix The prefix to check.
|
||||
*
|
||||
* @retval TRUE The published prefix entry is added to the Thread Network Data.
|
||||
* @retval FLASE The entry is not added to Thread Network Data or there is no matching entry to publish.
|
||||
* @retval FALSE The entry is not added to Thread Network Data or there is no matching entry to publish.
|
||||
*
|
||||
*/
|
||||
bool IsPrefixAdded(const Ip6::Prefix &aPrefix) const;
|
||||
|
||||
Reference in New Issue
Block a user