eina: fix common misspellings

Misspellings detected by codespell.



SVN revision: 61405
This commit is contained in:
Lucas De Marchi 2011-07-15 14:31:31 +00:00
parent f99a16d27d
commit 6fb6089ea1
8 changed files with 9 additions and 9 deletions

View File

@ -61,7 +61,7 @@
* *
* The Eina library is a library that implements an API for data types * The Eina library is a library that implements an API for data types
* in an efficient way. It also provides some useful tools like * in an efficient way. It also provides some useful tools like
* openin shared libraries, errors management, type conversion, * opening shared libraries, errors management, type conversion,
* time accounting and memory pool. * time accounting and memory pool.
* *
* This library is cross-platform and can be compiled and used on * This library is cross-platform and can be compiled and used on

View File

@ -253,7 +253,7 @@ EAPI void eina_accessor_over(Eina_Accessor *accessor,
* *
* If the container of the @p accessor permits it, it will be locked. When a * If the container of the @p accessor permits it, it will be locked. When a
* container is locked calling eina_accessor_over() on it will return * container is locked calling eina_accessor_over() on it will return
* imediately. If @p accessor is @c NULL or if a problem occurred, #EINA_FALSE * immediately. If @p accessor is @c NULL or if a problem occurred, #EINA_FALSE
* is returned, otherwise #EINA_TRUE is returned. If the container isn't * is returned, otherwise #EINA_TRUE is returned. If the container isn't
* lockable, it will return EINA_TRUE. * lockable, it will return EINA_TRUE.
* *

View File

@ -290,7 +290,7 @@ EAPI void eina_array_step_set(Eina_Array *array,
* @param array The array to clean. * @param array The array to clean.
* *
* This function sets the count member of @p array to 0, however it doesn't free * This function sets the count member of @p array to 0, however it doesn't free
* any space. This is particularly usefull if you need to empty the array and * any space. This is particularly useful if you need to empty the array and
* add lots of elements quickly. For performance reasons, there is no check of * add lots of elements quickly. For performance reasons, there is no check of
* @p array. If it is @c NULL or invalid, the program may crash. * @p array. If it is @c NULL or invalid, the program may crash.
*/ */

View File

@ -31,7 +31,7 @@
* @page eina_file_example_01_page * @page eina_file_example_01_page
* @dontinclude eina_file_01.c * @dontinclude eina_file_01.c
* *
* For brevity includes, variable declarations and initialization was ommited * For brevity includes, variable declarations and initialization was omitted
* from this page, however the full source code can be seen @ref * from this page, however the full source code can be seen @ref
* eina_file_example_01 "here". * eina_file_example_01 "here".
* *

View File

@ -228,7 +228,7 @@
* *
* Basically for a very small number of keys (10 or less), @c djb2 should be * Basically for a very small number of keys (10 or less), @c djb2 should be
* used, or @c string_small if you have a restriction on memory usage. And for a * used, or @c string_small if you have a restriction on memory usage. And for a
* higher number of keys, @c string_superfast should be always prefered. * higher number of keys, @c string_superfast should be always preferred.
* *
* If just stringshared keys are being added, use @ref * If just stringshared keys are being added, use @ref
* eina_hash_stringshared_new. If a lot of keys will be added to the hash table * eina_hash_stringshared_new. If a lot of keys will be added to the hash table

View File

@ -255,7 +255,7 @@ EAPI void eina_iterator_foreach(Eina_Iterator *iterator,
* *
* If the container of the @p iterator permits it, it will be locked. When a * If the container of the @p iterator permits it, it will be locked. When a
* container is locked calling eina_iterator_foreach() on it will return * container is locked calling eina_iterator_foreach() on it will return
* imediately. If @p iterator is @c NULL or if a problem occurred, #EINA_FALSE * immediately. If @p iterator is @c NULL or if a problem occurred, #EINA_FALSE
* is returned, otherwise #EINA_TRUE is returned. If the container isn't * is returned, otherwise #EINA_TRUE is returned. If the container isn't
* lockable, it will return EINA_TRUE. * lockable, it will return EINA_TRUE.
* *

View File

@ -18,7 +18,7 @@
* eina: * eina:
* @until eina_init * @until eina_init
* *
* It's frequentely nescessary to split a string into it's constituent parts, * It's frequentely necessary to split a string into its constituent parts,
* eina_str_split() make's it easy to do so: * eina_str_split() make's it easy to do so:
* @until printf * @until printf
* *
@ -32,7 +32,7 @@
* @until Has * @until Has
* *
* When strings will be used in a terminal(or a number of other places) it * When strings will be used in a terminal(or a number of other places) it
* nescessary to escape certain characters that appear in them: * necessary to escape certain characters that appear in them:
* @until printf * @until printf
* *
* Much as we previously split a string we will now join two strings: * Much as we previously split a string we will now join two strings:

View File

@ -20,7 +20,7 @@
* *
* Here you can see two different ways of creating a buffer with the same * Here you can see two different ways of creating a buffer with the same
* contents. We could create them in simpler ways, but this gives us an * contents. We could create them in simpler ways, but this gives us an
* oportunity to demonstrate several functions in action: * opportunity to demonstrate several functions in action:
* @until strbuf_reset * @until strbuf_reset
* @until strbuf_reset * @until strbuf_reset
* *