Spelling fixes
authorBryce Harrington <bryce@osg.samsung.com>
Thu, 19 Mar 2015 01:37:47 +0000 (21:37 -0400)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Thu, 19 Mar 2015 01:38:33 +0000 (21:38 -0400)
Summary:
emmited  ==> emitted
resistence  ==> resistance
occured  ==> occurred

Reviewers: cedric, zmike, devilhorns

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D2192

data/ecore/ecore_wayland/protocol/subsurface.xml
doc/edje_examples.dox
doc/eio_examples.dox
doc/ephysics_examples.dox
src/examples/edje/edje-box.c
src/lib/ecore_audio/Ecore_Audio.h
src/lib/edje/edje_text.c
src/lib/escape/sys/mman.h
src/lib/evas/cserve2/evas_cs2_client.c
src/lib/evil/dlfcn.h
src/lib/evil/sys/mman.h

index 9e4a658d6ec6d016f0c0b8667625e7ddd261c9c5..1b8bcb18376a30b4902d175a39860567632448ee 100644 (file)
     <request name="set_sync">
       <description summary="set sub-surface to synchronized mode">
        Change the commit behaviour of the sub-surface to synchronized
-       mode, also described as the parent dependant mode.
+       mode, also described as the parent dependent mode.
 
        In synchronized mode, wl_surface.commit on a sub-surface will
        accumulate the committed state in a cache, but the state will
index c15dfb629daf7719ed14c15ceb806b8e2710b96c..30722ba57ba45f23d9d17bac1210d055f9ce7dc0 100644 (file)
  *
  * There are two other things that are worth mentioning, we added two callbacks for the
  * objects, one for mouse down (that we use to delete the color class) and another
- * for the signal emmited when a color class is deleted.
+ * for the signal emitted when a color class is deleted.
  * @skip  evas_object_event
  * @until NULL
  * @skip  edje_object_si
index a0f1325045940d2d06335fc94021226f11658608..4b7c1ede75eb14f43e3d41c231b3ad8804c10dd0 100644 (file)
@@ -24,7 +24,7 @@
  * @li The notification callback, which allows you to know if a file or
  * a directory is copied, and the progress of the copy.
  * @li The end callback, which is called when the copy is finished.
- * @li The error callback, which is called if an error occured. You
+ * @li The error callback, which is called if an error occurred. You
  * can then retrieve the error type as an errno error.
  *
  * @warning It is the user's duty to provide the "right target". It
  * @li The end callback, which is called in the main loop when the
  * content of the directory has been correctly scanned and all the
  * file notified to the main loop.
- * @li The error callback, which is called if an error occured or
+ * @li The error callback, which is called if an error occurred or
  * if the listing was cancelled during it's run. You can then retrieve
  * the error type as an errno error.
  *
  * @li The end callback, which is called in the main loop when the
  * content of the directory has been correctly scanned and all the
  * file notified to the main loop.
- * @li The error callback, which is called if an error occured or
+ * @li The error callback, which is called if an error occurred or
  * if the listing was cancelled during it's run. You can then retrieve
  * the error type as an errno error.
  *
  * @li The end callback, which is called in the main loop when the
  * content of the directory has been correctly scanned and all the
  * file notified to the main loop.
- * @li The error callback, which is called if an error occured or
+ * @li The error callback, which is called if an error occurred or
  * if the listing was cancelled during it's run. You can then retrieve
  * the error type as an errno error.
  *
index 77629a7172583dc7edd86fb2f6ab1763b7a577e6..cddf3c8bdfad3606d191002a447d7aa670246aa3 100644 (file)
  *
  * Here we set EPhysics_Bodys linear and angular damping values.The damping is
  * a force synchronous with the velocity of the object but in opposite
- * direction - like air resistence.
+ * direction - like air resistance.
  *
  * @skipline ephysics_body_damping_set(sphere_body1
  *
index 978a5309c32a8873afd626de94c8d5728de05c44..a36a5a539448a3403784704d0536667e3d35845a 100644 (file)
@@ -92,7 +92,7 @@ _on_rect_mouse_down(void *data, Evas *e, Evas_Object *o, void *event_info)
        printf("Inserting rect %p before the rectangle under the mouse pointer.\n", rect);
        r = edje_object_part_box_insert_before(edje_obj, "example/box", rect, o);
        if (!r)
-         printf("An error ocurred when appending rect %p to the box.\n", rect);
+         printf("An error occurred when appending rect %p to the box.\n", rect);
 
        evas_object_event_callback_add(rect, EVAS_CALLBACK_MOUSE_DOWN, _on_rect_mouse_down, NULL);
      }
@@ -126,7 +126,7 @@ _on_bg_key_down(void *data, Evas *e, Evas_Object *o EINA_UNUSED, void *event_inf
        printf("Inserting rect %p before the rectangle under the mouse pointer.\n", rect);
        r = edje_object_part_box_insert_at(edje_obj, "example/box", rect, 0);
        if (!r)
-         printf("An error ocurred when appending rect %p to the box.\n", rect);
+         printf("An error occurred when appending rect %p to the box.\n", rect);
 
        evas_object_event_callback_add(rect, EVAS_CALLBACK_MOUSE_DOWN, _on_rect_mouse_down, NULL);
      }
@@ -140,7 +140,7 @@ _on_bg_key_down(void *data, Evas *e, Evas_Object *o EINA_UNUSED, void *event_inf
        printf("Inserting rect %p before the rectangle under the mouse pointer.\n", rect);
        r = edje_object_part_box_append(edje_obj, "example/box", rect);
        if (!r)
-         printf("An error ocurred when appending rect %p to the box.\n", rect);
+         printf("An error occurred when appending rect %p to the box.\n", rect);
 
        evas_object_event_callback_add(rect, EVAS_CALLBACK_MOUSE_DOWN, _on_rect_mouse_down, NULL);
      }
@@ -209,7 +209,7 @@ main(int argc EINA_UNUSED, char *argv[] EINA_UNUSED)
        evas_object_resize(rect, RECTW, RECTH);
        r = edje_object_part_box_append(edje_obj, "example/box", rect);
        if (!r)
-         printf("An error ocurred when appending rect #%d to the box.\n", i);
+         printf("An error occurred when appending rect #%d to the box.\n", i);
        evas_object_show(rect);
 
        evas_object_event_callback_add(
index dda0c1bec5a2194c7745b3a42bbccbc67f0ba774..0835d6d99d2d719aa38bf255840b4f13249b94c8 100644 (file)
@@ -110,7 +110,7 @@ struct _Ecore_Audio_Vio {
      *               SEEK_END: offset is relative to the end
      *
      * @return The resulting position from the start of the file (in bytes)
-     *         or -1 if an error occured (i.e. out of bounds)
+     *         or -1 if an error occurred (i.e. out of bounds)
      *
      * @since 1.8
      */
index c180122eebafad3e360f4d49482d654643622059..e95feb580d8abdd30612ce447519171c35197432 100644 (file)
@@ -443,7 +443,7 @@ _edje_text_recalc_apply(Edje *ed, Edje_Real_Part *ep,
     * this was moderately okay for a time because nobody was using it or GROUP parts
     * with text in them very frequently, and so nobody noticed that the mismatch was breaking
     * sizing in some cases when the edje ellipsis value failed to be applied,
-    * which ocurred any time text.min_x was set; in this case, ellipsis would NEVER be
+    * which occurred any time text.min_x was set; in this case, ellipsis would NEVER be
     * correctly applied, and instead the text object would only ever get the first
     * ellipsis_set(0), permanently breaking the part.
     * the only way to fix this while preserving previous behavior was to bump
index b243c153628a10f68796a85e338f25bfa8236cf1..aebbbc98dbe0d079881a5e726134c24f79511aa7 100644 (file)
@@ -97,7 +97,7 @@ extern "C" {
  * If the map view of file can not be created, -1 is returned.
  * If the mappping can not be done, -1 is returned.
  *
- * If no error occured, the starting address of the mapped view
+ * If no error occurred, the starting address of the mapped view
  * is returned.
  *
  * Conformity: None.
index 2471c1f8e9c756bb3e9aba125332c99eb5e644f5..bdea591d6c1254243c74ed7cff16257a2a1da34b 100644 (file)
@@ -2140,7 +2140,7 @@ _glyph_request_cb(void *data, const void *msg, int size)
    return EINA_TRUE;
 
 end:
-   ERR("An unknown error occured when waiting for glyph data!");
+   ERR("An unknown error occurred when waiting for glyph data!");
    free(grd);
    return EINA_TRUE;
 }
index d85811a02f34098d14194257b96f50f9cfe88c27..21de0b8ccc56b3f6a1f13f0cfdb584a0672873f7 100644 (file)
@@ -224,7 +224,7 @@ EAPI int dladdr (const void *addr, Dl_info *info);
 /**
  * @brief Get diagnostic information
  *
- * @return A @c NULL-terminated string if an error occured, @c NULL
+ * @return A @c NULL-terminated string if an error occurred, @c NULL
  * otherwise.
  *
  * Return a @c NULL-terminated character string describing the last
index 3c63536a99dae30b83ea7c54a6ea8da97add27ba..575f1261e9f4a19200c2878151d6daf062c00847 100644 (file)
@@ -102,7 +102,7 @@ extern "C" {
  * If the map view of file can not be created, -1 is returned.
  * If the mappping can not be done, -1 is returned.
  *
- * If no error occured, the starting address of the mapped view
+ * If no error occurred, the starting address of the mapped view
  * is returned.
  *
  * Conformity: None.