summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kutsan <AKutsan@luxoft.com>2016-08-16 14:48:24 +0300
committerAlexander Kutsan <AKutsan@luxoft.com>2016-08-17 10:20:45 +0300
commit9df2535e17ac5a423c534fda11316e21289caa4f (patch)
tree987ef78f034fa3bd4af876ad04b418d99a675e46
parent29e68de66562241d6f5fcf508d8f2dd9ee185eaa (diff)
downloadsdl_core-9df2535e17ac5a423c534fda11316e21289caa4f.tar.gz
Fix typo
-rw-r--r--src/components/application_manager/include/application_manager/commands/mobile/register_app_interface_request.h2
-rw-r--r--src/components/application_manager/include/application_manager/hmi_interfaces.h1
-rw-r--r--src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc2
-rw-r--r--src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc2
-rw-r--r--src/components/include/security_manager/crypto_manager.h2
5 files changed, 4 insertions, 5 deletions
diff --git a/src/components/application_manager/include/application_manager/commands/mobile/register_app_interface_request.h b/src/components/application_manager/include/application_manager/commands/mobile/register_app_interface_request.h
index 4a76fe8a3c..507f8f9bed 100644
--- a/src/components/application_manager/include/application_manager/commands/mobile/register_app_interface_request.h
+++ b/src/components/application_manager/include/application_manager/commands/mobile/register_app_interface_request.h
@@ -97,7 +97,7 @@ class RegisterAppInterfaceRequest : public CommandRequestImpl {
const uint32_t app_id);
/**
- * @brief SendChangeRagistrationOnHMI send required SendChangeRagistration n
+ * @brief SendChangeRagistrationOnHMI send required SendChangeRagistration
* HMI
* @param app application to change registration
*/
diff --git a/src/components/application_manager/include/application_manager/hmi_interfaces.h b/src/components/application_manager/include/application_manager/hmi_interfaces.h
index 6c9a9c422e..4f73c75fcb 100644
--- a/src/components/application_manager/include/application_manager/hmi_interfaces.h
+++ b/src/components/application_manager/include/application_manager/hmi_interfaces.h
@@ -38,7 +38,6 @@
namespace application_manager {
-
/**
* @brief The HmiInterfacesImpl class handles
* hmi interfaces states
diff --git a/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc b/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc
index b04c5a0863..681fbde7b3 100644
--- a/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc
+++ b/src/components/application_manager/src/commands/hmi/ui_is_ready_response.cc
@@ -53,7 +53,7 @@ void UIIsReadyResponse::Run() {
HMICapabilities& hmi_capabilities = application_manager_.hmi_capabilities();
hmi_capabilities.set_is_ui_cooperating(is_available);
- const HmiInterfaces::InterfaceState inteface_state =
+ const HmiInterfaces::InterfaceState interface_state =
is_available ? HmiInterfaces::STATE_AVAILABLE
: HmiInterfaces::STATE_NOT_AVAILABLE;
HmiInterfaces& hmi_interfaces = application_manager_.hmi_interfaces();
diff --git a/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc b/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc
index 28342d1318..1a7e70af70 100644
--- a/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc
+++ b/src/components/application_manager/src/commands/hmi/vi_is_ready_response.cc
@@ -53,7 +53,7 @@ void VIIsReadyResponse::Run() {
HMICapabilities& hmi_capabilities = application_manager_.hmi_capabilities();
hmi_capabilities.set_is_ivi_cooperating(is_available);
- const HmiInterfaces::InterfaceState inteface_state =
+ const HmiInterfaces::InterfaceState interface_state =
is_available ? HmiInterfaces::STATE_AVAILABLE
: HmiInterfaces::STATE_NOT_AVAILABLE;
HmiInterfaces& hmi_interfaces = application_manager_.hmi_interfaces();
diff --git a/src/components/include/security_manager/crypto_manager.h b/src/components/include/security_manager/crypto_manager.h
index 9b11a8e4ae..18c06ffe06 100644
--- a/src/components/include/security_manager/crypto_manager.h
+++ b/src/components/include/security_manager/crypto_manager.h
@@ -58,7 +58,7 @@ class CryptoManager : public policy::PolicyHandlerObserver {
/**
* @brief Init allows to initialize cryptomanager with certain values.
*
- * @return true in case initialization was succesfull, false otherwise.
+ * @return true in case initialization was succesful, false otherwise.
*/
virtual bool Init() = 0;
virtual SSLContext* CreateSSLContext() = 0;