eina: fix common misspellings

Common misspellings found by codespell.



SVN revision: 60479
This commit is contained in:
Lucas De Marchi 2011-06-18 19:48:28 +00:00
parent 8302133e1b
commit cde2bec9f6
4 changed files with 6 additions and 6 deletions

View File

@ -28,7 +28,7 @@
* @page eina_accessor_example_01_page Eina_Accessor usage
* @dontinclude eina_accessor_01.c
*
* We start by including neccessary headers, declaring variables and
* We start by including necessary headers, declaring variables and
* initializing eina:
* @skip #include
* @until eina_init

View File

@ -52,7 +52,7 @@
* passing a NULL pointer to the first @ref eina_list_append() call, when this
* is done a list is created. The other @b very important detail to notice is
* that the return value is attributed to the @a list variable, this needs to
* be done everytime we use a a function that alters the contents of the list.
* be done every time we use a a function that alters the contents of the list.
*
* Now that we have a list we some elements in it we can look at it's contents.
* @until printf
@ -165,7 +165,7 @@
* Removing elements from a list can be done with ease:
* @until sagitarius
*
* To replace an element in the list it is not nescessary to remove it and then
* To replace an element in the list it is not necessary to remove it and then
* add with the new value, it is possible to just change the value of a node:
* @until aquarius
*
@ -231,7 +231,7 @@
*
* Eina_List is a doubly linked list. It can store data of any type in the
* form of void pointers. It has convenience functions to do all the common
* operations which means it should rarely if ever be nescessary to directly
* operations which means it should rarely if ever be necessary to directly
* access the struct's fields. Nevertheless it can be useful to understand the
* inner workings of the data structure being used.
*

View File

@ -151,7 +151,7 @@ typedef Eina_Bool (*Eina_Simple_XML_Attribute_Cb)(void *data, const char *key, c
* not a NULL terminated string!), the forth is where this
* content is located inside @a buf (does not include tag
* start, for instance "<!DOCTYPE value>" the offset points at
* "value"), the fifth is the size of the content. Whenver this
* "value"), the fifth is the size of the content. Whenever this
* function return EINA_FALSE the parser will abort. @param
* data what to give as context to @a func.
*

View File

@ -222,7 +222,7 @@ _try_argv(Eina_Prefix *pfx, const char *argv0)
return 1;
}
IF_FREE_NULL(pfx->exe_path);
DBG("Non existant argv0: %s\n", argv0);
DBG("Non existent argv0: %s\n", argv0);
return 0;
}
/* 2. relative path */