Skip to content

Commit

Permalink
Resolve Spellcheck and Doxygen Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dakshit Babbar committed Sep 11, 2024
1 parent 5ead3f8 commit 431b34f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/core_mqtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -3311,7 +3311,7 @@ MQTTStatus_t MQTT_Disconnect( MQTTContext_t * pContext )
pContext->index = 0;
( void ) memset( pContext->networkBuffer.pBuffer, 0, pContext->networkBuffer.size );

LogError( ( "MQTT Connection Disconnected Successfuly" ) );
LogError( ( "MQTT Connection Disconnected Successfully" ) );

/* Here we do not use vectors as the disconnect packet has fixed fields
* which do not reside in user provided buffers. Thus, it can be sent
Expand Down
6 changes: 3 additions & 3 deletions source/include/core_mqtt.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ typedef enum MQTTConnectionStatus
{
MQTTNotConnected, /**< @brief MQTT Connection is inactive. */
MQTTConnected, /**< @brief MQTT Connection is active. */
MQTTDisconnectPending /**< @brief MQTT Connection needs to be disconnected as a transport error has occured. */
MQTTDisconnectPending /**< @brief MQTT Connection needs to be disconnected as a transport error has occurred. */
} MQTTConnectionStatus_t;

/**
Expand Down Expand Up @@ -422,8 +422,8 @@ MQTTStatus_t MQTT_InitStatefulQoS( MQTTContext_t * pContext,
*
* @return #MQTTBadParameter if invalid parameters are passed;
* #MQTTStatusConnected if the MQTT connection is established with the broker.
* #MQTTSatusNotConnected if the MQTT connection is broker.
* #MQTTSatusDisconnectPending if Transport Interface has failed and MQTT connection needs to be closed.
* #MQTTStatusNotConnected if the MQTT connection is broker.
* #MQTTStatusDisconnectPending if Transport Interface has failed and MQTT connection needs to be closed.
*
* <b>Example</b>
* @code{c}
Expand Down

0 comments on commit 431b34f

Please sign in to comment.