diff options
author | Geunsun, Lee <gs86.lee@samsung.com> | 2017-09-01 15:27:16 +0900 |
---|---|---|
committer | Geunsun, Lee <gs86.lee@samsung.com> | 2017-09-01 15:27:59 +0900 |
commit | ab96598f6cbfaf62847b95b86f9c49a6acf4db34 (patch) | |
tree | 0e30ea5906f836ee84d5a75f0721dd28b276b0d7 | |
parent | 7371d7996dc2ec863dee5d76e06eb27e09f46a3b (diff) | |
download | position-finder-server-ab96598f6cbfaf62847b95b86f9c49a6acf4db34.tar.gz position-finder-server-ab96598f6cbfaf62847b95b86f9c49a6acf4db34.tar.bz2 position-finder-server-ab96598f6cbfaf62847b95b86f9c49a6acf4db34.zip |
Fix missspelling: vaule -> value
Change-Id: Id6daac9ec180c617783065869c4ae3ad56322712
-rw-r--r-- | inc/connectivity.h | 6 | ||||
-rw-r--r-- | inc/resource/resource_illuminance_sensor.h | 2 | ||||
-rw-r--r-- | inc/resource/resource_infrared_motion_sensor.h | 2 | ||||
-rw-r--r-- | inc/resource/resource_infrared_obstacle_avoidance_sensor.h | 2 | ||||
-rw-r--r-- | inc/resource/resource_touch_sensor.h | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/inc/connectivity.h b/inc/connectivity.h index ca1aa2f..b88f83a 100644 --- a/inc/connectivity.h +++ b/inc/connectivity.h @@ -50,7 +50,7 @@ extern int connectivity_set_resource(const char *path, const char *type, connect extern void connectivity_unset_resource(connectivity_resource_s *resource); /** - * @brief Notifies specific clients that resource's attributes have changed with boolean vaule. + * @brief Notifies specific clients that resource's attributes have changed with boolean value. * @param[in] resource_info A structure containing information about connectivity resource * @param[in] key A new key to be added into attributes * @param[in] value A boolean value to be added into attributes @@ -60,7 +60,7 @@ extern void connectivity_unset_resource(connectivity_resource_s *resource); extern int connectivity_notify_bool(connectivity_resource_s *resource_info, const char *key, bool value); /** - * @brief Notifies specific clients that resource's attributes have changed with int vaule. + * @brief Notifies specific clients that resource's attributes have changed with int value. * @param[in] resource_info A structure containing information about connectivity resource * @param[in] key A new key to be added into attributes * @param[in] value A int value to be added into attributes @@ -70,7 +70,7 @@ extern int connectivity_notify_bool(connectivity_resource_s *resource_info, cons extern int connectivity_notify_int(connectivity_resource_s *resource_info, const char *key, int value); /** - * @brief Notifies specific clients that resource's attributes have changed with double vaule. + * @brief Notifies specific clients that resource's attributes have changed with double value. * @param[in] resource_info A structure containing information about connectivity resource * @param[in] key A new key to be added into attributes * @param[in] value A double value to be added into attributes diff --git a/inc/resource/resource_illuminance_sensor.h b/inc/resource/resource_illuminance_sensor.h index 2e8925d..f3329a5 100644 --- a/inc/resource/resource_illuminance_sensor.h +++ b/inc/resource/resource_illuminance_sensor.h @@ -25,7 +25,7 @@ /** * @brief Reads the value of i2c bus connected illuminance sensor. * @param[in] i2c_bus The i2c bus number that the slave device is connected - * @param[out] out_value The vaule read by the illuminance sensor + * @param[out] out_value The value read by the illuminance sensor * @return 0 on success, otherwise a negative error value * @see If the i2c bus is not open, creates i2c handle before reading data from the i2c slave device. */ diff --git a/inc/resource/resource_infrared_motion_sensor.h b/inc/resource/resource_infrared_motion_sensor.h index 6f9ff36..a6ed278 100644 --- a/inc/resource/resource_infrared_motion_sensor.h +++ b/inc/resource/resource_infrared_motion_sensor.h @@ -25,7 +25,7 @@ /** * @brief Reads the value of gpio connected infrared motion sensor(HC-SR501). * @param[in] pin_num The number of the gpio pin connected to the infrared motion sensor - * @param[out] out_value The vaule of the gpio (zero or non-zero) + * @param[out] out_value The value of the gpio (zero or non-zero) * @return 0 on success, otherwise a negative error value * @see If the gpio pin is not open, creates gpio handle before reading the value of gpio. */ diff --git a/inc/resource/resource_infrared_obstacle_avoidance_sensor.h b/inc/resource/resource_infrared_obstacle_avoidance_sensor.h index dd25e25..5c8bab1 100644 --- a/inc/resource/resource_infrared_obstacle_avoidance_sensor.h +++ b/inc/resource/resource_infrared_obstacle_avoidance_sensor.h @@ -25,7 +25,7 @@ /** * @brief Reads the value of gpio connected infrared obstacle avoidance sensor. * @param[in] pin_num The number of the gpio pin connected to the infrared obstacle avoidance sensor - * @param[out] out_value The vaule of the gpio (zero or non-zero) + * @param[out] out_value The value of the gpio (zero or non-zero) * @return 0 on success, otherwise a negative error value * @see If the gpio pin is not open, creates gpio handle before reading the value of gpio. */ diff --git a/inc/resource/resource_touch_sensor.h b/inc/resource/resource_touch_sensor.h index ea2866f..2cd76d2 100644 --- a/inc/resource/resource_touch_sensor.h +++ b/inc/resource/resource_touch_sensor.h @@ -25,7 +25,7 @@ /** * @brief Reads the value of gpio connected touch sensor. * @param[in] pin_num The number of the gpio pin connected to the touch sensor - * @param[out] out_value The vaule of the gpio (zero or non-zero) + * @param[out] out_value The value of the gpio (zero or non-zero) * @return 0 on success, otherwise a negative error value * @see If the gpio pin is not open, creates gpio handle before reading the value of gpio. */ |