mirror of
https://github.com/espressif/openthread.git
synced 2026-08-08 03:37:46 +00:00
Fix typos in comments (#1688)
This commit is contained in:
committed by
Jonathan Hui
parent
86157e9930
commit
41b82d3a89
+2
-2
@@ -1317,8 +1317,8 @@ AC_MSG_NOTICE([
|
||||
OpenThread DHCPv6 Server support : ${enable_dhcp6_server}
|
||||
OpenThread DHCPv6 Client support : ${enable_dhcp6_client}
|
||||
OpenThread DNS Client support : ${enable_dns_client}
|
||||
Openthread Application CoAP support : ${enable_application_coap}
|
||||
Openthread Raw Link-Layer support : ${enable_raw_link_api}
|
||||
OpenThread Application CoAP support : ${enable_application_coap}
|
||||
OpenThread Raw Link-Layer support : ${enable_raw_link_api}
|
||||
OpenThread examples : ${OPENTHREAD_EXAMPLES}
|
||||
OpenThread platform information : ${PLATFORM_INFO}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@ int main(int argc, char *argv[])
|
||||
otInstanceBuffer = (uint8_t *)malloc(otInstanceBufferLength);
|
||||
assert(otInstanceBuffer);
|
||||
|
||||
// Initialize Openthread with the buffer
|
||||
// Initialize OpenThread with the buffer
|
||||
sInstance = otInstanceInit(otInstanceBuffer, &otInstanceBufferLength);
|
||||
#else
|
||||
sInstance = otInstanceInit();
|
||||
|
||||
@@ -76,7 +76,7 @@ int main(int argc, char *argv[])
|
||||
otInstanceBuffer = (uint8_t *)malloc(otInstanceBufferLength);
|
||||
assert(otInstanceBuffer);
|
||||
|
||||
// Initialize Openthread with the buffer
|
||||
// Initialize OpenThread with the buffer
|
||||
sInstance = otInstanceInit(otInstanceBuffer, &otInstanceBufferLength);
|
||||
#else
|
||||
sInstance = otInstanceInit();
|
||||
|
||||
@@ -572,7 +572,7 @@
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_PLAT_LOG_FUNCTION
|
||||
*
|
||||
* Defines the name of function/marco used for logging inside Openthread, by default is set to `otPlatLog()`.
|
||||
* Defines the name of function/macro used for logging inside OpenThread, by default is set to `otPlatLog()`.
|
||||
*
|
||||
*/
|
||||
#ifndef OPENTHREAD_CONFIG_PLAT_LOG_FUNCTION
|
||||
@@ -592,7 +592,7 @@
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_NUM_SLAAC_ADDRESSES
|
||||
*
|
||||
* The number of autoconfigured SLAAC addresses.
|
||||
* The number of auto-configured SLAAC addresses.
|
||||
*
|
||||
*/
|
||||
#ifndef OPENTHREAD_CONFIG_NUM_SLAAC_ADDRESSES
|
||||
|
||||
@@ -121,7 +121,7 @@ void TestFuzz(uint32_t aSeconds)
|
||||
VerifyOrQuit(otInstanceBuffer != NULL, "Failed to allocate otInstance");
|
||||
memset(otInstanceBuffer, 0, otInstanceBufferLength);
|
||||
|
||||
// Initialize Openthread with the buffer
|
||||
// Initialize OpenThread with the buffer
|
||||
aInstance = otInstanceInit(otInstanceBuffer, &otInstanceBufferLength);
|
||||
#else
|
||||
aInstance = otInstanceInit();
|
||||
|
||||
@@ -203,7 +203,7 @@ void TestMessageQueueOtApis(void)
|
||||
otInstanceBuffer = (uint8_t *)malloc(otInstanceBufferLength);
|
||||
assert(otInstanceBuffer);
|
||||
|
||||
// Initialize Openthread with the buffer
|
||||
// Initialize OpenThread with the buffer
|
||||
instance = otInstanceInit(otInstanceBuffer, &otInstanceBufferLength);
|
||||
#else
|
||||
instance = otInstanceInit();
|
||||
|
||||
Reference in New Issue
Block a user