ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/tools/edi.git/commit/?id=06410fa8b0ffdfb8ded0be2fba5c5f41996f5d2e

commit 06410fa8b0ffdfb8ded0be2fba5c5f41996f5d2e
Author: Sanjeev BA <[email protected]>
Date:   Sun Jun 18 21:49:53 2017 +0100

    Fix typos.
    
    Summary: Signed-off-by: Sanjeev BA <[email protected]>
    
    Reviewers: ajwillia.ms, jpeg, cedric
    
    Reviewed By: ajwillia.ms
    
    Differential Revision: https://phab.enlightenment.org/D4973
---
 src/bin/edi_build_main.c                 | 2 +-
 src/bin/edi_consolepanel.h               | 4 ++--
 src/bin/edi_debugpanel.h                 | 2 +-
 src/bin/edi_filepanel.h                  | 2 +-
 src/bin/edi_logpanel.h                   | 2 +-
 src/bin/edi_searchpanel.h                | 2 +-
 src/bin/editor/edi_editor.h              | 2 +-
 src/bin/language/edi_language_provider.h | 6 +++---
 src/bin/mainview/edi_mainview.c          | 2 +-
 src/bin/mainview/edi_mainview.h          | 2 +-
 src/bin/screens/edi_about.c              | 2 +-
 src/bin/screens/edi_screens.h            | 6 +++---
 src/lib/Edi.h                            | 4 ++--
 src/lib/edi_create.c                     | 2 +-
 src/lib/edi_scm.h                        | 2 +-
 15 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/bin/edi_build_main.c b/src/bin/edi_build_main.c
index bd6066d..d21713f 100644
--- a/src/bin/edi_build_main.c
+++ b/src/bin/edi_build_main.c
@@ -197,7 +197,7 @@ main(int argc, char **argv)
        ((ret = _edi_build_action_try(provider, provider->test, "test", 
build_type)) == EXIT_NOACTION) &&
        ((ret = _edi_build_action_try(provider, provider->build, "build", 
build_type)) == EXIT_NOACTION))
      {
-        fprintf(stderr, "Unrecognised build type - try build, clean, create or 
test.\n");
+        fprintf(stderr, "Unrecognized build type - try build, clean, create or 
test.\n");
         goto end;
      }
    if (ret != EXIT_SUCCESS)
diff --git a/src/bin/edi_consolepanel.h b/src/bin/edi_consolepanel.h
index 95835bb..3d1588b 100644
--- a/src/bin/edi_consolepanel.h
+++ b/src/bin/edi_consolepanel.h
@@ -23,7 +23,7 @@ extern "C" {
  */
 
 /**
- * Initialize a new Edi consolepanel and add it to the parent panel.
+ * Initialise a new Edi consolepanel and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  *
@@ -39,7 +39,7 @@ void edi_consolepanel_add(Evas_Object *parent);
 void edi_consolepanel_show();
 
 /**
- * Initialize a new Edi testpanel and add it to the parent panel.
+ * Initialise a new Edi testpanel and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  *
diff --git a/src/bin/edi_debugpanel.h b/src/bin/edi_debugpanel.h
index bbdbeb9..6f189d0 100644
--- a/src/bin/edi_debugpanel.h
+++ b/src/bin/edi_debugpanel.h
@@ -23,7 +23,7 @@ extern "C" {
  */
 
 /**
- * Initialize a new Edi debugpanel and add it to the parent panel.
+ * Initialise a new Edi debugpanel and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  *
diff --git a/src/bin/edi_filepanel.h b/src/bin/edi_filepanel.h
index 9ea1ae9..ef689dc 100644
--- a/src/bin/edi_filepanel.h
+++ b/src/bin/edi_filepanel.h
@@ -27,7 +27,7 @@ typedef void (*edi_filepanel_item_clicked_cb)(const char 
*path,
  */
 
 /**
- * Initialize a new Edi filepanel and add it to the parent panel.
+ * Initialise a new Edi filepanel and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  * @param win The main window of the application.
diff --git a/src/bin/edi_logpanel.h b/src/bin/edi_logpanel.h
index 284b6e7..74039c3 100644
--- a/src/bin/edi_logpanel.h
+++ b/src/bin/edi_logpanel.h
@@ -23,7 +23,7 @@ extern "C" {
  */
 
 /**
- * Initialize a new Edi logpanel and add it to the parent panel.
+ * Initialise a new Edi logpanel and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  *
diff --git a/src/bin/edi_searchpanel.h b/src/bin/edi_searchpanel.h
index 29c3497..409a2d3 100644
--- a/src/bin/edi_searchpanel.h
+++ b/src/bin/edi_searchpanel.h
@@ -24,7 +24,7 @@ extern "C" {
 
 
 /**
- * Initialize a new Edi searchpanel and add it to the parent panel.
+ * Initialise a new Edi searchpanel and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  *
diff --git a/src/bin/editor/edi_editor.h b/src/bin/editor/edi_editor.h
index 8ba0d06..888c9e5 100644
--- a/src/bin/editor/edi_editor.h
+++ b/src/bin/editor/edi_editor.h
@@ -77,7 +77,7 @@ struct _Edi_Editor
  */
 
 /**
- * Initialize a new Edi editor and add it to the parent panel.
+ * Initialise a new Edi editor and add it to the parent panel.
  *
  * @param parent The panel into which the panel will be loaded.
  * @param item The item describing the file to be loaded in the editor.
diff --git a/src/bin/language/edi_language_provider.h 
b/src/bin/language/edi_language_provider.h
index 5ccb29c..6fd29be 100644
--- a/src/bin/language/edi_language_provider.h
+++ b/src/bin/language/edi_language_provider.h
@@ -15,7 +15,7 @@ extern "C" {
 
 /**
  * @typedef Edi_Editor_Suggest_Item
- * A handle for passig a suggest item to the ui and back
+ * A handle for passing a suggest item to the ui and back
  */
 typedef struct _Edi_Language_Suggest_Item
 {
@@ -34,7 +34,7 @@ typedef struct _Edi_Language_Document
 /**
  * @struct Edi_Editor_Suggest_Provider
  * A description of the requirements for a suggestion provider.
- * This handles the set up and teardown of a provider as well as the lookup and
+ * This handles the set up and tear down of a provider as well as the lookup 
and
  * description lookup functions
  */
 typedef struct _Edi_Language_Provider
@@ -67,7 +67,7 @@ typedef struct _Edi_Language_Provider
 Edi_Language_Provider *edi_language_provider_get(Edi_Editor *editor);
 
 /**
- * Query whether a suggest provider is available for the spcified editor 
session.
+ * Query whether a suggest provider is available for the specified editor 
session.
  *
  * @param editor the editor session for a file you wish to get a suggestion 
provider for
  *
diff --git a/src/bin/mainview/edi_mainview.c b/src/bin/mainview/edi_mainview.c
index 12c3f35..1bf8236 100644
--- a/src/bin/mainview/edi_mainview.c
+++ b/src/bin/mainview/edi_mainview.c
@@ -408,7 +408,7 @@ _edi_mainview_mime_content_safe_popup(void)
 
    popup = elm_popup_add(_main_win);
    elm_object_part_text_set(popup, "title,text",
-                                   "Unrecognised file type");
+                                   "Unrecognized file type");
    label = elm_label_add(popup);
    elm_object_text_set(label, "To force open, select this file in the file 
browser, and use \"open as\" menu options.");
    evas_object_show(label);
diff --git a/src/bin/mainview/edi_mainview.h b/src/bin/mainview/edi_mainview.h
index aced01f..a5f927d 100644
--- a/src/bin/mainview/edi_mainview.h
+++ b/src/bin/mainview/edi_mainview.h
@@ -28,7 +28,7 @@ extern "C" {
  */
 
 /**
- * Initialize a new Edi main view and add it to the parent panel.
+ * Initialise a new Edi main view and add it to the parent panel.
  *
  * @param parent The parent into which the panel will be loaded.
  * @param win The window the panel will be using
diff --git a/src/bin/screens/edi_about.c b/src/bin/screens/edi_about.c
index 1f84dd0..0f7cf1e 100644
--- a/src/bin/screens/edi_about.c
+++ b/src/bin/screens/edi_about.c
@@ -77,7 +77,7 @@ edi_about_show(Evas_Object *mainwin)
    text = elm_label_add(box);
    elm_object_text_set(text, "<br>EDI is an IDE designed to get people into 
coding for Unix.<br>" \
                              "It's based on the <b>EFL</b> and written 
completely natively<br>" \
-                             "to provide a <i>reponsive</i> and 
<i>beautiful</i> UI.<br>");
+                             "to provide a <i>responsive</i> and 
<i>beautiful</i> UI.<br>");
    evas_object_size_hint_weight_set(text, EVAS_HINT_EXPAND, 0.0);
    evas_object_size_hint_align_set(text, EVAS_HINT_FILL, EVAS_HINT_FILL);
    elm_box_pack_end(box, text);
diff --git a/src/bin/screens/edi_screens.h b/src/bin/screens/edi_screens.h
index e86c660..1d3bc71 100644
--- a/src/bin/screens/edi_screens.h
+++ b/src/bin/screens/edi_screens.h
@@ -23,7 +23,7 @@ extern "C" {
  */
 
 /**
- * Initialize a new Edi welcome window and display it.
+ * Initialise a new Edi welcome window and display it.
  *
  * @return The welcome window that is created
  *
@@ -41,7 +41,7 @@ Evas_Object *edi_welcome_show();
 Evas_Object *edi_welcome_create_show();
 
 /**
- * Initialize a new Edi about window and display it.
+ * Initialise a new Edi about window and display it.
  *
  * @return The about window that is created
  *
@@ -50,7 +50,7 @@ Evas_Object *edi_welcome_create_show();
 Evas_Object *edi_about_show(Evas_Object *mainwin);
 
 /**
- * Initialize a new Edi settings window and display it.
+ * Initialise a new Edi settings window and display it.
  *
  * @return The settings window that is created
  *
diff --git a/src/lib/Edi.h b/src/lib/Edi.h
index f95964e..eaf9d82 100644
--- a/src/lib/Edi.h
+++ b/src/lib/Edi.h
@@ -64,9 +64,9 @@ extern "C" {
  */
 
 /**
- * Initialize Edi.
+ * Initialise Edi.
  *
- * Initializes Edi, its dependencies and modules. Should be the first
+ * Initialises Edi, its dependencies and modules. Should be the first
  * function of Edi to be called.
  *
  * @return The init counter value.
diff --git a/src/lib/edi_create.c b/src/lib/edi_create.c
index f389db6..de31d48 100644
--- a/src/lib/edi_create.c
+++ b/src/lib/edi_create.c
@@ -250,7 +250,7 @@ _edi_create_extract_done(void *data, int type EINA_UNUSED, 
void *event EINA_UNUS
 
    create = (Edi_Create *)data;
    snprintf(tmpinner, sizeof(tmpinner), "%s/%s", create->temp, 
create->skelfile);
-   tmpinner[strlen(tmpinner) - 7] = '\0'; // strip extensin
+   tmpinner[strlen(tmpinner) - 7] = '\0'; // strip extension
 
    ecore_event_handler_del(create->handler);
 
diff --git a/src/lib/edi_scm.h b/src/lib/edi_scm.h
index 6af404e..ac885fc 100644
--- a/src/lib/edi_scm.h
+++ b/src/lib/edi_scm.h
@@ -144,7 +144,7 @@ int edi_scm_del(const char *path);
 /**
  * Set commit message for next commit to SCM.
  *
- * @param message The commit mesage to send.
+ * @param message The commit message to send.
  *
  * @ingroup Scm
  */

-- 


Reply via email to