summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc
diff options
context:
space:
mode:
authorAndriy Byzhynar (GitHub) <AByzhynar@luxoft.com>2017-09-08 11:50:53 +0300
committerGitHub <noreply@github.com>2017-09-08 11:50:53 +0300
commit7b57748b3213b6739f9e700c751f7a3b63c7f027 (patch)
tree96f3670d00319d72d1bb6cbbd72b734cca048ab0 /src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc
parentcba30e27410de448bcdf3263efbfa32b6ccc3b06 (diff)
downloadsdl_core-7b57748b3213b6739f9e700c751f7a3b63c7f027.tar.gz
Fix typos
Diffstat (limited to 'src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc')
-rw-r--r--src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc b/src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc
index f01edbdb74..78b05e452f 100644
--- a/src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc
+++ b/src/components/application_manager/src/commands/mobile/alert_maneuver_request.cc
@@ -219,12 +219,12 @@ bool AlertManeuverRequest::IsWhiteSpaceExist() {
using smart_objects::SmartArray;
if ((*message_)[strings::msg_params].keyExists(strings::tts_chunks)) {
- const SmartArray* tts_chuncks_arr =
+ const SmartArray* tts_chunks_arr =
(*message_)[strings::msg_params][strings::tts_chunks].asArray();
- SmartArray::const_iterator it_tts_chunk = tts_chuncks_arr->begin();
+ SmartArray::const_iterator it_tts_chunk = tts_chunks_arr->begin();
- for (; it_tts_chunk != tts_chuncks_arr->end(); ++it_tts_chunk) {
+ for (; it_tts_chunk != tts_chunks_arr->end(); ++it_tts_chunk) {
const char* tts_chunk_text = (*it_tts_chunk)[strings::text].asCharArray();
if (strlen(tts_chunk_text) && !CheckSyntax(tts_chunk_text)) {
LOG4CXX_ERROR(logger_, "Invalid tts_chunks syntax check failed");