docs: progressbar: correct minor typos

Reviewers: q66, stefan_schmidt

Subscribers: cedric, seoz, jpeg

Differential Revision: https://phab.enlightenment.org/D3950
This commit is contained in:
Shuhrat Dehkanov 2016-05-17 14:36:59 +02:00 committed by Stefan Schmidt
parent d200d483ef
commit cab208e83f
2 changed files with 4 additions and 9 deletions

View File

@ -26,7 +26,7 @@ interface Efl.Ui.Progress {
Use this call to set progress levels.
Note: If you passes a value out of the specified range for
Note: If you pass a value out of the specified range for
$val, it will be interpreted as the closest of the boundary
values in the range.]]
set {

View File

@ -55,7 +55,7 @@ EAPI Evas_Coord elm_progressbar_span_size_get(const Evas_Object *obj);
*
* Use this call to set progress bar levels.
*
* @note If you passes a value out of the specified range for @c val, it will
* @note If you pass a value out of the specified range for @c val, it will
* be interpreted as the closest of the boundary values in the range.
*
* @param[in] val The progress value (must be between $0.0 and 1.0)
@ -65,15 +65,10 @@ EAPI Evas_Coord elm_progressbar_span_size_get(const Evas_Object *obj);
EAPI void elm_progressbar_value_set(Evas_Object *obj, double val);
/**
* @brief Control the progress value (in percentage) on a given progress bar
* @brief Get the progress value (in percentage) on a given progress bar
* widget
*
* Use this call to set progress bar levels.
*
* @note If you passes a value out of the specified range for @c val, it will
* be interpreted as the closest of the boundary values in the range.
*
* @return The progress value (must be between $0.0 and 1.0)
* @return The progress value (between $0.0 and 1.0)
*
* @ingroup Elm_Progressbar
*/