Fix typos in comments (#1688)

This commit is contained in:
Abtin Keshavarzian
2017-05-01 14:46:30 -07:00
committed by Jonathan Hui
parent 86157e9930
commit 41b82d3a89
6 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -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}
+1 -1
View File
@@ -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();
+1 -1
View File
@@ -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();
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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();
+1 -1
View File
@@ -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();