[docs] fix typos FLASE -> FALSE (#7389)

This commit is contained in:
Jonathan Hui
2022-02-03 20:17:17 -08:00
committed by GitHub
parent 3b79cb0d08
commit 74f5ab5c9f
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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);
+4 -4
View File
@@ -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); }
+2 -2
View File
@@ -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;