"whether" has 2x 'h'
authorMike Blumenkrantz <zmike@samsung.com>
Thu, 10 Apr 2014 13:27:51 +0000 (09:27 -0400)
committerMike Blumenkrantz <zmike@samsung.com>
Thu, 10 Apr 2014 13:27:51 +0000 (09:27 -0400)
src/lib/edje/Edje_Eo.h
src/lib/edje/Edje_Legacy.h
src/lib/edje/edje.eo
src/lib/efreet/efreet_xml.c
src/lib/eio/Eio.h

index a780fa7..9078fcc 100644 (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
  *
index 818a690..f804cc4 100644 (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.
index 1ec3147..b77fc21 100644 (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 {
index 1a79a91..35823bb 100644 (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)))
index d59f187..5760317 100644 (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