discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d03ecb0f3daa43eb566030f124c96086437861d3

commit d03ecb0f3daa43eb566030f124c96086437861d3
Author: Mike Blumenkrantz <[email protected]>
Date:   Thu Apr 10 09:27:51 2014 -0400

    "whether" has 2x 'h'
---
 src/lib/edje/Edje_Eo.h      | 2 +-
 src/lib/edje/Edje_Legacy.h  | 4 ++--
 src/lib/edje/edje.eo        | 4 ++--
 src/lib/efreet/efreet_xml.c | 4 ++--
 src/lib/eio/Eio.h           | 8 ++++----
 5 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/lib/edje/Edje_Eo.h b/src/lib/edje/Edje_Eo.h
index a780fa7..9078fcc 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 818a690..f804cc4 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 1ec3147..b77fc21 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 1a79a91..35823bb 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 d59f187..5760317 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

-- 


Reply via email to