"whether" has 2x 'h'

This commit is contained in:
Mike Blumenkrantz 2014-04-10 09:27:51 -04:00
parent f3c835d6fc
commit d03ecb0f3d
5 changed files with 11 additions and 11 deletions

View File

@ -1595,7 +1595,7 @@ enum
* @def edje_obj_update_hints_get
* @since 1.8
*
* @brief Wether or not Edje will update size hints on itself.
* @brief Whether or not Edje will update size hints on itself.
*
* @param[out] ret
*

View File

@ -173,7 +173,7 @@ EAPI void edje_object_size_min_get (const Evas_Object *obj, E
* @brief Edje will automatically update the size hints on itself.
*
* @param obj A handle to an Edje object.
* @param update Wether or not update the size hints.
* @param update Whether or not update the size hints.
*
* By default edje doesn't set size hints on itself. With this function
* call, it will do so if update is true. Be carefully, it cost a lot to
@ -183,7 +183,7 @@ EAPI void edje_object_size_min_get (const Evas_Object *obj, E
EAPI void edje_object_update_hints_set(Evas_Object *obj, Eina_Bool update);
/**
* @brief Wether or not Edje will update size hints on itself.
* @brief Whether or not Edje will update size hints on itself.
*
* @param obj A handle to an Edje object.
* @return @c true if does, @c false if it doesn't.

View File

@ -16,12 +16,12 @@ class Edje (Evas_Smart_Clipped)
}
get {
/*@
@brief Wether or not Edje will update size hints on itself.
@brief Whether or not Edje will update size hints on itself.
@return @c true if does, @c false if it doesn't. */
}
values {
Eina_Bool update; /*@ Wether or not update the size hints. */
Eina_Bool update; /*@ Whether or not update the size hints. */
}
}
mirrored {

View File

@ -235,11 +235,11 @@ efreet_xml_parse(char **data, int *size, int *error)
xml->tag = tag;
efreet_xml_attributes_parse(data, size, &(xml->attributes), error);
/* Check wether element is empty */
/* Check whether element is empty */
if (efreet_xml_tag_empty(data, size, error)) return xml;
efreet_xml_text_parse(data, size, &(xml->text));
/* Check wether element is closed */
/* Check whether element is closed */
if (efreet_xml_tag_close(data, size, xml->tag, error)) return xml;
while ((sub_xml = efreet_xml_parse(data, size, error)))

View File

@ -589,7 +589,7 @@ EAPI Eio_File *eio_file_xattr(const char *path,
* @param path The path to set the attribute on.
* @param attribute The name of the attribute to define.
* @param xattr_int The value to link the attribute with.
* @param flags Wether to insert, replace or create the attribute.
* @param flags Whether to insert, replace or create the attribute.
* @param done_cb The callback called from the main loop when setxattr succeeded.
* @param error_cb The callback called from the main loop when setxattr failed.
* @param data Unmodified user data passed to callbacks
@ -611,7 +611,7 @@ EAPI Eio_File *eio_file_xattr_int_set(const char *path,
* @param path The path to set the attribute on.
* @param attribute The name of the attribute to define.
* @param xattr_double The value to link the attribute with.
* @param flags Wether to insert, replace or create the attribute.
* @param flags Whether to insert, replace or create the attribute.
* @param done_cb The callback called from the main loop when setxattr succeeded.
* @param error_cb The callback called from the main loop when setxattr failed.
* @param data Unmodified user data passed to callbacks
@ -632,7 +632,7 @@ EAPI Eio_File *eio_file_xattr_double_set(const char *path,
* @param path The path to set the attribute on.
* @param attribute The name of the attribute to define.
* @param xattr_string The string to link the attribute with.
* @param flags Wether to insert, replace or create the attribute.
* @param flags Whether to insert, replace or create the attribute.
* @param done_cb The callback called from the main loop when setxattr succeeded.
* @param error_cb The callback called from the main loop when setxattr failed.
* @param data Unmodified user data passed to callbacks
@ -654,7 +654,7 @@ EAPI Eio_File *eio_file_xattr_string_set(const char *path,
* @param attribute The name of the attribute to define.
* @param xattr_data The data to link the attribute with.
* @param xattr_size The size of the data to set.
* @param flags Wether to insert, replace or create the attribute.
* @param flags Whether to insert, replace or create the attribute.
* @param done_cb The callback called from the main loop when setxattr succeeded.
* @param error_cb The callback called from the main loop when setxattr failed.
* @param data Unmodified user data passed to callbacks