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 ); }