summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2014-04-10 09:27:51 -0400
committerMike Blumenkrantz <zmike@samsung.com>2014-04-10 09:27:51 -0400
commitd03ecb0f3daa43eb566030f124c96086437861d3 (patch)
tree5970a9bb720faf6033fc30e2682b4b087e831d00
parentf3c835d6fc1639b5a83b1496422f9f717e427c5d (diff)
downloadefl-d03ecb0f3daa43eb566030f124c96086437861d3.tar.gz
"whether" has 2x 'h'
-rw-r--r--src/lib/edje/Edje_Eo.h2
-rw-r--r--src/lib/edje/Edje_Legacy.h4
-rw-r--r--src/lib/edje/edje.eo4
-rw-r--r--src/lib/efreet/efreet_xml.c4
-rw-r--r--src/lib/eio/Eio.h8
5 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/edje/Edje_Eo.h b/src/lib/edje/Edje_Eo.h
index a780fa7c25..9078fccbba 100644
--- a/src/lib/edje/Edje_Eo.h
+++ b/src/lib/edje/Edje_Eo.h
@@ -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
*
diff --git a/src/lib/edje/Edje_Legacy.h b/src/lib/edje/Edje_Legacy.h
index 818a69052b..f804cc41b7 100644
--- a/src/lib/edje/Edje_Legacy.h
+++ b/src/lib/edje/Edje_Legacy.h
@@ -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.
diff --git a/src/lib/edje/edje.eo b/src/lib/edje/edje.eo
index 1ec31476a7..b77fc21e7d 100644
--- a/src/lib/edje/edje.eo
+++ b/src/lib/edje/edje.eo
@@ -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 {
diff --git a/src/lib/efreet/efreet_xml.c b/src/lib/efreet/efreet_xml.c
index 1a79a9118c..35823bbe29 100644
--- a/src/lib/efreet/efreet_xml.c
+++ b/src/lib/efreet/efreet_xml.c
@@ -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)))
diff --git a/src/lib/eio/Eio.h b/src/lib/eio/Eio.h
index d59f18741b..57603178fa 100644
--- a/src/lib/eio/Eio.h
+++ b/src/lib/eio/Eio.h
@@ -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