[docs] fix typos in Doxygen documentation (#9485)

This commit fixes typos in Doxygen documentation, ensuring that
`@param` variable names match the function/method declaration. It
also adds any missing `@param` tags and removes extra ones.
This commit is contained in:
Abtin Keshavarzian
2023-10-03 19:58:59 -07:00
committed by GitHub
parent 9d80fbc4ba
commit 4e52d85dff
13 changed files with 16 additions and 23 deletions
-2
View File
@@ -56,8 +56,6 @@ extern "C" {
*/
/**
* @struct otCryptoSha256Hash
*
* Represents a SHA-256 hash.
*
*/
+1 -1
View File
@@ -53,7 +53,7 @@ extern "C" {
* @note This number versions both OpenThread platform and user APIs.
*
*/
#define OPENTHREAD_API_VERSION (361)
#define OPENTHREAD_API_VERSION (362)
/**
* @addtogroup api-instance
+1 -6
View File
@@ -135,12 +135,7 @@ void otJoinerStop(otInstance *aInstance);
*
* @param[in] aInstance A pointer to an OpenThread instance.
*
* @retval OT_JOINER_STATE_IDLE
* @retval OT_JOINER_STATE_DISCOVER
* @retval OT_JOINER_STATE_CONNECT
* @retval OT_JOINER_STATE_CONNECTED
* @retval OT_JOINER_STATE_ENTRUST
* @retval OT_JOINER_STATE_JOINED
* @returns The joiner state.
*
*/
otJoinerState otJoinerGetState(otInstance *aInstance);
+2 -2
View File
@@ -291,7 +291,7 @@ otNat64State otNat64GetPrefixManagerState(otInstance *aInstance);
* @sa otNat64GetPrefixManagerState
*
*/
void otNat64SetEnabled(otInstance *aInstance, bool aEnable);
void otNat64SetEnabled(otInstance *aInstance, bool aEnabled);
/**
* Allocate a new message buffer for sending an IPv4 message to the NAT64 translator.
@@ -374,7 +374,7 @@ typedef void (*otNat64ReceiveIp4Callback)(otMessage *aMessage, void *aContext);
* @param[in] aInstance A pointer to an OpenThread instance.
* @param[in] aCallback A pointer to a function that is called when an IPv4 datagram is received or
* NULL to disable the callback.
* @param[in] aCallbackContext A pointer to application-specific context.
* @param[in] aContext A pointer to application-specific context.
*
*/
void otNat64SetReceiveIp4Callback(otInstance *aInstance, otNat64ReceiveIp4Callback aCallback, void *aContext);
+1 -1
View File
@@ -258,9 +258,9 @@ otError otNetDataPublishExternalRoute(otInstance *aInstance, const otExternalRou
* Data (monitoring the Network Data to determine when/if to add the prefix, depending on the number of similar
* prefixes present in the Network Data).
*
* @param[in] aInstance A pointer to an OpenThread instance.
* @param[in] aPrefix The previously published external route prefix to replace.
* @param[in] aConfig The external route config to publish.
* @param[in] aRequester The requester (`kFromUser` or `kFromRoutingManager` module).
*
* @retval OT_ERROR_NONE The external route is published successfully.
* @retval OT_ERROR_INVALID_ARGS The @p aConfig is not valid (bad prefix, invalid flag combinations, or not stable).
+1 -1
View File
@@ -913,7 +913,7 @@ bool otThreadIsRouterIdAllocated(otInstance *aInstance, uint8_t aRouterId);
* to get the value.
*
* @param[in] aInstance A pointer to an OpenThread instance.
* @param[in] aDesRloct16 The RLOC16 of destination.
* @param[in] aDestRloc16 The RLOC16 of destination.
* @param[out] aNextHopRloc16 A pointer to return RLOC16 of next hop, 0xfffe if no next hop.
* @param[out] aPathCost A pointer to return path cost towards destination.
*
+2 -2
View File
@@ -375,8 +375,8 @@ public:
*
* The favored NAT64 prefix can be discovered from infrastructure link or can be the local NAT64 prefix.
*
* @param[out] aPrefix A reference to output the favored prefix.
* @param[out] aPreference A reference to output the preference associated with the favored prefix.
* @param[out] aPrefix A reference to output the favored prefix.
* @param[out] aRoutePreference A reference to output the preference associated with the favored prefix.
*
* @retval kErrorInvalidState The Border Routing Manager is not initialized yet.
* @retval kErrorNone Successfully retrieved the NAT64 prefix.
+1 -1
View File
@@ -848,7 +848,7 @@ protected:
/**
* Sets the resource handler function.
*
* @param[in] aResourceHandler The resource handler function pointer.
* @param[in] aHandler The resource handler function pointer.
*
*/
void SetResourceHandler(ResourceHandler aHandler) { mResourceHandler = aHandler; }
+1 -1
View File
@@ -387,7 +387,7 @@ public:
* ACK. The Frame Pending and IE Present bits are not set.
*
* @param[in] aType Frame type.
* @param[in] aVerion Frame version.
* @param[in] aVersion Frame version.
* @param[in] aAddrs Frame source and destination addresses (each can be none, short, or extended).
* @param[in] aPanIds Source and destination PAN IDs.
* @param[in] aSecurityLevel Frame security level.
+2 -2
View File
@@ -200,7 +200,7 @@ public:
* MUST be used when Active Timestamp component is present in the Dataset, otherwise its behavior is
* undefined.
*
* @returns The Active Timestamp in the Dataset.
* @param[out] aTimestamp A reference to output the Active Timestamp in the Dataset.
*
*/
void GetActiveTimestamp(Timestamp &aTimestamp) const { aTimestamp.SetFromTimestamp(mActiveTimestamp); }
@@ -231,7 +231,7 @@ public:
* MUST be used when Pending Timestamp component is present in the Dataset, otherwise its behavior
* is undefined.
*
* @returns The Pending Timestamp in the Dataset.
* @param[out] aTimestamp A reference to output the Pending Timestamp in the Dataset.
*
*/
void GetPendingTimestamp(Timestamp &aTimestamp) const { aTimestamp.SetFromTimestamp(mPendingTimestamp); }
+1 -1
View File
@@ -1105,7 +1105,7 @@ public:
/**
* Initializes the TLV.
*
* @param[in] aMleCounter The MLE counters to initialize the TLV with.
* @param[in] aMleCounters The MLE counters to initialize the TLV with.
*
*/
void Init(const Mle::Counters &aMleCounters);
+1 -1
View File
@@ -381,7 +381,7 @@ public:
/**
* Gets the allocated Router ID set.
*
* @returns The allocated Router ID set.
* @param[out] aRouterIdSet A reference to output the allocated Router ID set.
*
*/
void GetRouterIdSet(Mle::RouterIdSet &aRouterIdSet) const { return mRouterIdMap.GetAsRouterIdSet(aRouterIdSet); }
+2 -2
View File
@@ -93,9 +93,9 @@ public:
/**
* Iterates through the discovered IPv6 address of a router.
*
* @param[out] aIp6Address A reference to return the next IPv6 address (if any).
* @param[out] aAddress A reference to return the next IPv6 address (if any).
*
* @retval kErrorNone Successfully retrieved the next address. @p aIp6Address is updated.
* @retval kErrorNone Successfully retrieved the next address. @p aAddress is updated.
* @retval kErrorNotFound No more address. Reached the end of the list.
*
*/