From 32b91578e4288bbfdd36a8d77ab253ef2fc09443 Mon Sep 17 00:00:00 2001 From: Ming Yue Date: Mon, 18 May 2020 09:48:53 -0700 Subject: [PATCH] Fix Typos. --- demos/demo_runner/iot_demo_freertos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/demo_runner/iot_demo_freertos.c b/demos/demo_runner/iot_demo_freertos.c index 83c928e7fe2..577d76c2bbd 100644 --- a/demos/demo_runner/iot_demo_freertos.c +++ b/demos/demo_runner/iot_demo_freertos.c @@ -255,7 +255,7 @@ static int _initialize( demoContext_t * pContext ) { if( AwsIotNetworkManager_EnableNetwork( configENABLED_NETWORKS ) != configENABLED_NETWORKS ) { - IotLogError( "Failed to intialize all the networks configured for the device." ); + IotLogError( "Failed to initialize all the networks configured for the device." ); status = EXIT_FAILURE; } } @@ -267,7 +267,7 @@ static int _initialize( demoContext_t * pContext ) if( demoConnectedNetwork == AWSIOT_NETWORK_TYPE_NONE ) { - /* Network not yet initialized. Block for a network to be intialized. */ + /* Network not yet initialized. Block for a network to be initialized. */ IotLogInfo( "No networks connected for the demo. Waiting for a network connection. " ); demoConnectedNetwork = _waitForDemoNetworkConnection( pContext ); }