Fix typos.

Summary: Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>

Reviewers: ajwillia.ms, jpeg, cedric

Reviewed By: ajwillia.ms

Differential Revision: https://phab.enlightenment.org/D4973
This commit is contained in:
Sanjeev BA 2017-06-18 21:49:53 +01:00 committed by Andy Williams
parent 43a036a632
commit 06410fa8b0
15 changed files with 21 additions and 21 deletions

View File

@ -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)

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.

View File

@ -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
*

View File

@ -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);

View File

@ -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

View File

@ -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);

View File

@ -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
*

View File

@ -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.

View File

@ -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);

View File

@ -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
*/