diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2018-05-25 18:53:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2018-05-25 18:53:52 +0000 |
commit | 88befdfd812a58fb7a36e090278ad1e70003e925 (patch) | |
tree | dd04c9b6d8d6e534e0c2687250b18a006964bd18 /low-can-binding/binding/application.hpp | |
parent | 438bf4912a1174c63fac77fe72e3b320c589f431 (diff) | |
parent | 2eb313e5330dbfa1b6eab146b3698d8ffe054347 (diff) |
Merge "Fixing typos made in comments"flounder_5.99.1flounder/5.99.15.99.1
Diffstat (limited to 'low-can-binding/binding/application.hpp')
-rw-r--r-- | low-can-binding/binding/application.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/low-can-binding/binding/application.hpp b/low-can-binding/binding/application.hpp index 93494872..92aca382 100644 --- a/low-can-binding/binding/application.hpp +++ b/low-can-binding/binding/application.hpp @@ -28,12 +28,12 @@ #include "../diagnostic/diagnostic-manager.hpp" /// -/// @brief Class representing a configuration attached to the binding. +/// @brief Class represents a configuration attached to the binding. /// -/// It regroups all needed objects instance from other class -/// that will be used along the binding life. It gets a global vision +/// It regroups all object instances from other classes +/// that will be used through the binding life. It receives a global vision /// on which signals are implemented for that binding. -/// Here, it is only the definition of the class with predefined accessors +/// Here, only the definition of the class is given with predefined accessors /// methods used in the binding. /// /// It will be the reference point to needed objects. @@ -41,7 +41,7 @@ class application_t { private: - can_bus_t can_bus_manager_; ///< instanciate the CAN bus manager. It's the one in charge of initialize the CAN bus devices. + can_bus_t can_bus_manager_; ///< instanciate the CAN bus manager. It's responsible of initializing the CAN bus devices. diagnostic_manager_t diagnostic_manager_; ///< Diagnostic manager use to manage diagnostic message communication. uint8_t active_message_set_ = 0; ///< Which is the active message set ? Default to 0. |