From ac04c0dd1a2462ec84a6532af1a8762b9d18f39f Mon Sep 17 00:00:00 2001 From: lucas Date: Wed, 8 Sep 2010 03:21:16 +0000 Subject: [PATCH] Fix common misspellings The following misspellings were fixed: asociated->associated convertion->conversion exemple->example existant->existent immediatly->immediately isnt->isn't loosing->losing memeber->member occured->occurred occurence->occurrence occurences->occurrences ocurred->occurred recomended->recommended sucess->success teh->the tiem->time usefull->useful git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@51962 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/include/eina_inline_list.x | 2 +- src/include/eina_log.h | 2 +- src/include/eina_strbuf.h | 2 +- src/include/eina_trash.h | 2 +- src/lib/eina_accessor.c | 6 +++--- src/lib/eina_array.c | 4 ++-- src/lib/eina_benchmark.c | 4 ++-- src/lib/eina_binshare.c | 2 +- src/lib/eina_convert.c | 10 +++++----- src/lib/eina_counter.c | 8 ++++---- src/lib/eina_file.c | 2 +- src/lib/eina_hash.c | 24 ++++++++++++------------ src/lib/eina_inlist.c | 4 ++-- src/lib/eina_iterator.c | 8 ++++---- src/lib/eina_list.c | 6 +++--- src/lib/eina_log.c | 2 +- src/lib/eina_module.c | 14 +++++++------- src/lib/eina_quadtree.c | 2 +- src/lib/eina_rbtree.c | 6 +++--- src/lib/eina_rectangle.c | 2 +- src/lib/eina_str.c | 2 +- src/lib/eina_strbuf_common.c | 4 ++-- src/lib/eina_stringshare.c | 2 +- src/lib/eina_ustringshare.c | 2 +- src/modules/mp/buddy/eina_buddy.c | 2 +- src/modules/mp/one_big/eina_one_big.c | 2 +- src/tests/evas_hash.c | 2 +- src/tests/evas_list.c | 4 ++-- src/tests/strlog | 2 +- 29 files changed, 67 insertions(+), 67 deletions(-) diff --git a/src/include/eina_inline_list.x b/src/include/eina_inline_list.x index 5c77d96..8325370 100644 --- a/src/include/eina_inline_list.x +++ b/src/include/eina_inline_list.x @@ -128,7 +128,7 @@ eina_list_data_set(Eina_List *list, const void *data) * This function returns how many members @p list contains. If the * list is @c NULL, 0 is returned. * - * NB: This is an order-1 operation and takes the same tiem regardless + * NB: This is an order-1 operation and takes the same time regardless * of the length of the list. */ static inline unsigned int diff --git a/src/include/eina_log.h b/src/include/eina_log.h index 15c1062..d0fd159 100644 --- a/src/include/eina_log.h +++ b/src/include/eina_log.h @@ -67,7 +67,7 @@ EAPI extern int EINA_LOG_DOMAIN_GLOBAL; * defaults to #EINA_LOG_DOMAIN_GLOBAL. * * @note One may like to redefine this in its code to avoid typing too - * much. In this case the recomended way is: + * much. In this case the recommended way is: * * @code * #include diff --git a/src/include/eina_strbuf.h b/src/include/eina_strbuf.h index 5f498dc..4424eb4 100644 --- a/src/include/eina_strbuf.h +++ b/src/include/eina_strbuf.h @@ -458,7 +458,7 @@ EAPI Eina_Bool eina_strbuf_replace(Eina_Strbuf *buf, const char *str, const char * @param with The replaceing string. * @return #EINA_TRUE on success, #EINA_FALSE on failure. * - * This macro is calling eina_strbuf_replace() with the n-th occurence + * This macro is calling eina_strbuf_replace() with the n-th occurrence * equal to @c 1. If @p buf can't replace it, #EINA_FALSE is returned, * otherwise #EINA_TRUE is returned. */ diff --git a/src/include/eina_trash.h b/src/include/eina_trash.h index 83274f3..0d165f1 100644 --- a/src/include/eina_trash.h +++ b/src/include/eina_trash.h @@ -79,7 +79,7 @@ static inline void *eina_trash_pop(Eina_Trash **trash) EINA_ARG_NONNULL(1) EINA_ * free(data); * @endcode * - * @note this macro is usefull when you implement some memory pool. + * @note this macro is useful when you implement some memory pool. */ #define EINA_TRASH_CLEAN(trash, data) while ((data = eina_trash_pop(trash)) diff --git a/src/lib/eina_accessor.c b/src/lib/eina_accessor.c index b244057..cb20cab 100644 --- a/src/lib/eina_accessor.c +++ b/src/lib/eina_accessor.c @@ -184,7 +184,7 @@ eina_accessor_data_get(Eina_Accessor *accessor, * element at position @p end. For Each element, the callback * @p cb is called with the data @p fdata. If @p accessor is @c NULL * or if @p start is greter or equal than @p end, the function returns - * immediatly. + * immediately. */ EAPI void eina_accessor_over(Eina_Accessor *accessor, @@ -224,7 +224,7 @@ eina_accessor_over(Eina_Accessor *accessor, * @return #EINA_TRUE on success, #EINA_FALSE otherwise. * * If the container of the @p accessor permit it, it will be locked. - * If @p accessor is @c NULL or if a problem occured, #EINA_FALSE is + * If @p accessor is @c NULL or if a problem occurred, #EINA_FALSE is * returned, otherwise #EINA_TRUE is returned. If the container * is not lockable, it will return EINA_TRUE. */ @@ -247,7 +247,7 @@ eina_accessor_lock(Eina_Accessor *accessor) * * If the container of the @p accessor permit it and was previously * locked, it will be unlocked. If @p accessor is @c NULL or if a - * problem occured, #EINA_FALSE is returned, otherwise #EINA_TRUE + * problem occurred, #EINA_FALSE is returned, otherwise #EINA_TRUE * is returned. If the container is not lockable, it will return * EINA_TRUE. */ diff --git a/src/lib/eina_array.c b/src/lib/eina_array.c index 5eff8b1..5eced22 100644 --- a/src/lib/eina_array.c +++ b/src/lib/eina_array.c @@ -638,7 +638,7 @@ eina_array_remove(Eina_Array *array, Eina_Bool (*keep)(void *data, } /** - * @brief Returned a new iterator asociated to an array. + * @brief Returned a new iterator associated to an array. * * @param array The array. * @return A new iterator. @@ -680,7 +680,7 @@ eina_array_iterator_new(const Eina_Array *array) } /** - * @brief Returned a new accessor asociated to an array. + * @brief Returned a new accessor associated to an array. * * @param array The array. * @return A new accessor. diff --git a/src/lib/eina_benchmark.c b/src/lib/eina_benchmark.c index 949798d..5cd3fd3 100644 --- a/src/lib/eina_benchmark.c +++ b/src/lib/eina_benchmark.c @@ -494,7 +494,7 @@ eina_benchmark_new(const char *name, const char *run) * * This function removes all the benchmark tests that have been * registered and frees @p bench. If @p bench is @c NULL, this - * function returns immediatly. + * function returns immediately. */ EAPI void eina_benchmark_free(Eina_Benchmark *bench) @@ -605,7 +605,7 @@ eina_benchmark_register(Eina_Benchmark *bench, * controlled by the parameters passed to eina_benchmark_register(). * * If @p bench is @c NULL, this functions returns @c NULL - * immediatly. Otherwise, it returns the list of the names of each + * immediately. Otherwise, it returns the list of the names of each * test. */ EAPI Eina_Array * diff --git a/src/lib/eina_binshare.c b/src/lib/eina_binshare.c index e93c315..3973357 100644 --- a/src/lib/eina_binshare.c +++ b/src/lib/eina_binshare.c @@ -104,7 +104,7 @@ eina_binshare_shutdown(void) * This function decreases the reference counter associated to @p obj * if it exists. If that counter reaches 0, the memory associated to * @p obj is freed. If @p obj is NULL, the function returns - * immediatly. + * immediately. * * Note that if the given pointer is not shared or NULL, bad things * will happen, likely a segmentation fault. diff --git a/src/lib/eina_convert.c b/src/lib/eina_convert.c index 1db4a92..0d75469 100644 --- a/src/lib/eina_convert.c +++ b/src/lib/eina_convert.c @@ -93,11 +93,11 @@ EAPI Eina_Error EINA_ERROR_CONVERT_0X_NOT_FOUND = 0; EAPI Eina_Error EINA_ERROR_CONVERT_OUTRUN_STRING_LENGTH = 0; static const char EINA_ERROR_CONVERT_0X_NOT_FOUND_STR[] = - "Error during string convertion to float, First '0x' was not found."; + "Error during string conversion to float, First '0x' was not found."; static const char EINA_ERROR_CONVERT_P_NOT_FOUND_STR[] = - "Error during string convertion to float, First 'p' was not found."; + "Error during string conversion to float, First 'p' was not found."; static const char EINA_ERROR_CONVERT_OUTRUN_STRING_LENGTH_STR[] = - "Error outrun string limit during convertion string convertion to float."; + "Error outrun string limit during conversion string conversion to float."; /** * @endcond @@ -178,7 +178,7 @@ eina_convert_shutdown(void) * wanted, eina_convert_xtoa() should be used. They all need a bufffer * sufficiently large to store all the cyphers. * - * Here is an exemple of use: + * Here is an example of use: * * @code * #include @@ -241,7 +241,7 @@ eina_convert_shutdown(void) * format. To obtain the double number from the mantiss and exponent, * use ldexp(). * - * Here is an exemple of use: + * Here is an example of use: * * @code * #include diff --git a/src/lib/eina_counter.c b/src/lib/eina_counter.c index 8bbe0c2..8c430dc 100644 --- a/src/lib/eina_counter.c +++ b/src/lib/eina_counter.c @@ -295,7 +295,7 @@ eina_counter_shutdown(void) * * This function returns a new counter. It is characterized by @p * name. If @p name is @c NULL, the function returns @c NULL - * immediatly. If memory allocation fails, @c NULL is returned and the + * immediately. If memory allocation fails, @c NULL is returned and the * error is set to #EINA_ERROR_OUT_OF_MEMORY. * * Whe the new counter is not needed anymore, use eina_counter_free() to @@ -333,7 +333,7 @@ eina_counter_new(const char *name) * This function remove the clock of @p counter from the used clocks * (see eina_counter_start()) and frees the memory allocated for * @p counter. If @p counter is @c NULL, the function returns - * immediatly. + * immediately. */ EAPI void eina_counter_free(Eina_Counter *counter) @@ -358,7 +358,7 @@ eina_counter_free(Eina_Counter *counter) * * This function specifies that the part of the code beginning just * after its call is being to be timed, using @p counter. If - * @p counter is @c NULL, this function returns immediatly. + * @p counter is @c NULL, this function returns immediately. * * This function adds the clock associated to @p counter in a list. If * the memory needed by that clock can not be allocated, the function @@ -432,7 +432,7 @@ eina_counter_stop(Eina_Counter *counter, int specimen) * This function returns an malloc'd string containing the dump of * all the valid clocks of @p counter. * If @p counter @c NULL, the functions exits - * immediatly. Otherwise, the output is formattted like that: + * immediately. Otherwise, the output is formattted like that: * * @verbatim * \# specimen experiment time starting time ending time diff --git a/src/lib/eina_file.c b/src/lib/eina_file.c index 8c75c4c..d009faf 100644 --- a/src/lib/eina_file.c +++ b/src/lib/eina_file.c @@ -217,7 +217,7 @@ _eina_file_direct_ls_iterator_free(Eina_File_Direct_Iterator *it) * * If @p cb or @p dir are @c NULL, or if @p dir is a string of size 0, * or if @p dir can not be opened, this function returns #EINA_FALSE - * immediatly. otherwise, it returns #EINA_TRUE. + * immediately. otherwise, it returns #EINA_TRUE. */ EAPI Eina_Bool eina_file_dir_list(const char *dir, diff --git a/src/lib/eina_hash.c b/src/lib/eina_hash.c index 8bd9e7b..db17431 100644 --- a/src/lib/eina_hash.c +++ b/src/lib/eina_hash.c @@ -1019,7 +1019,7 @@ eina_hash_free_buckets(Eina_Hash *hash) * @param key_length Should be the length of @p key (don't forget to count '\\0' for string). * @param key_hash The hash that will always match key. * @param data Data to associate with the string given by @p key. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. */ EAPI Eina_Bool @@ -1057,7 +1057,7 @@ eina_hash_add_by_hash(Eina_Hash *hash, * @param key_length Should be the length of @p key (don't forget to count '\\0' for string). * @param key_hash The hash that will always match key. * @param data Data to associate with the string given by @p key. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. */ EAPI Eina_Bool @@ -1086,7 +1086,7 @@ eina_hash_direct_add_by_hash(Eina_Hash *hash, * @param hash The given hash table. Can be @c NULL. * @param key A unique key. Can be @c NULL. * @param data Data to associate with the string given by @p key. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. */ EAPI Eina_Bool @@ -1127,7 +1127,7 @@ eina_hash_add(Eina_Hash *hash, const void *key, const void *data) * @param hash The given hash table. Can be @c NULL. * @param key A unique key. Can be @c NULL. * @param data Data to associate with the string given by @p key. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. */ EAPI Eina_Bool @@ -1158,7 +1158,7 @@ eina_hash_direct_add(Eina_Hash *hash, const void *key, const void *data) * @param key The key. Cannot be @c NULL. * @param key_length Should be the length of @p key (don't forget to count '\\0' for string). * @param key_hash The hash that always match the key. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. * * @note if you don't have the key_hash, use eina_hash_del_by_key() instead. @@ -1186,7 +1186,7 @@ eina_hash_del_by_key_hash(Eina_Hash *hash, * * @param hash The given hash table. * @param key The key. Cannot be @c NULL. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. * * @note if you already have the key_hash, use eina_hash_del_by_key_hash() instead. @@ -1210,7 +1210,7 @@ eina_hash_del_by_key(Eina_Hash *hash, const void *key) * * @param hash The given hash table. * @param data The data value to search and remove. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. * * @note if you already have the key, use eina_hash_del_by_key() or eina_hash_del_by_key_hash() instead. @@ -1254,7 +1254,7 @@ error: * @param key_hash The hash that always match the key. Ignored if @p key is @c NULL. * @param data The data pointer to remove if @p key is @c NULL. * Otherwise, not required and can be @c NULL. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. * * @note if you know you already have the key, use eina_hash_del_by_key_hash(), @@ -1294,7 +1294,7 @@ eina_hash_del_by_hash(Eina_Hash *hash, * @param key The key. Can be @c NULL. * @param data The data pointer to remove if @p key is @c NULL. * Otherwise, not required and can be @c NULL. - * @return Will return EINA_FALSE if an error occured, and EINA_TRUE if every + * @return Will return EINA_FALSE if an error occurred, and EINA_TRUE if every * thing goes fine. * * @note if you know you already have the key, use @@ -1595,7 +1595,7 @@ eina_hash_foreach(const Eina_Hash *hash, } /** - * @brief Returned a new iterator asociated to hash data. + * @brief Returned a new iterator associated to hash data. * * @param hash The hash. * @return A new iterator. @@ -1645,7 +1645,7 @@ eina_hash_iterator_data_new(const Eina_Hash *hash) } /** - * @brief Returned a new iterator asociated to hash keys. + * @brief Returned a new iterator associated to hash keys. * * @param hash The hash. * @return A new iterator. @@ -1696,7 +1696,7 @@ eina_hash_iterator_key_new(const Eina_Hash *hash) } /** - * @brief Returned a new iterator asociated to hash keys and data. + * @brief Returned a new iterator associated to hash keys and data. * * @param hash The hash. * @return A new iterator. diff --git a/src/lib/eina_inlist.c b/src/lib/eina_inlist.c index c7403a3..7693ce9 100644 --- a/src/lib/eina_inlist.c +++ b/src/lib/eina_inlist.c @@ -602,7 +602,7 @@ eina_inlist_count(const Eina_Inlist *list) } /** - * @brief Returned a new iterator asociated to a list. + * @brief Returned a new iterator associated to a list. * * @param list The list. * @return A new iterator. @@ -649,7 +649,7 @@ eina_inlist_iterator_new(const Eina_Inlist *list) } /** - * @brief Returned a new accessor asociated to a list. + * @brief Returned a new accessor associated to a list. * * @param list The list. * @return A new accessor. diff --git a/src/lib/eina_iterator.c b/src/lib/eina_iterator.c index b340292..66dbbf4 100644 --- a/src/lib/eina_iterator.c +++ b/src/lib/eina_iterator.c @@ -155,7 +155,7 @@ eina_iterator_container_get(Eina_Iterator *iterator) * * This function returns the value of the current element pointed by * @p iterator in @p data, then goes to the next element. If @p - * iterator is @c NULL or if a problem occured, #EINA_FALSE is + * iterator is @c NULL or if a problem occurred, #EINA_FALSE is * returned, otherwise #EINA_TRUE is returned. */ EAPI Eina_Bool @@ -181,7 +181,7 @@ eina_iterator_next(Eina_Iterator *iterator, void **data) * This function iterates over the elements pointed by @p iterator, * beginning from the current element. For Each element, the callback * @p cb is called with the data @p fdata. If @p iterator is @c NULL, - * the function returns immediatly. Also, if @p cb returns @c + * the function returns immediately. Also, if @p cb returns @c * EINA_FALSE, the iteration stops at that point. */ EAPI void @@ -217,7 +217,7 @@ eina_iterator_foreach(Eina_Iterator *iterator, * @return #EINA_TRUE on success, #EINA_FALSE otherwise. * * If the container of the @p iterator permit it, it will be locked. - * If @p iterator is @c NULL or if a problem occured, #EINA_FALSE is + * If @p iterator is @c NULL or if a problem occurred, #EINA_FALSE is * returned, otherwise #EINA_TRUE is returned. If the container * is not lockable, it will return EINA_TRUE. */ @@ -240,7 +240,7 @@ eina_iterator_lock(Eina_Iterator *iterator) * * If the container of the @p iterator permit it and was previously * locked, it will be unlocked. If @p iterator is @c NULL or if a - * problem occured, #EINA_FALSE is returned, otherwise #EINA_TRUE + * problem occurred, #EINA_FALSE is returned, otherwise #EINA_TRUE * is returned. If the container is not lockable, it will return * EINA_TRUE. */ diff --git a/src/lib/eina_list.c b/src/lib/eina_list.c index 1b05e4f..9a36232 100644 --- a/src/lib/eina_list.c +++ b/src/lib/eina_list.c @@ -2040,7 +2040,7 @@ eina_list_search_unsorted(const Eina_List *list, /** - * @brief Returned a new iterator asociated to a list. + * @brief Returned a new iterator associated to a list. * * @param list The list. * @return A new iterator. @@ -2088,7 +2088,7 @@ eina_list_iterator_new(const Eina_List *list) } /** - * @brief Returned a new reversed iterator asociated to a list. + * @brief Returned a new reversed iterator associated to a list. * * @param list The list. * @return A new iterator. @@ -2138,7 +2138,7 @@ eina_list_iterator_reversed_new(const Eina_List *list) } /** - * @brief Returned a new accessor asociated to a list. + * @brief Returned a new accessor associated to a list. * * @param list The list. * @return A new accessor. diff --git a/src/lib/eina_log.c b/src/lib/eina_log.c index f263394..73888d8 100644 --- a/src/lib/eina_log.c +++ b/src/lib/eina_log.c @@ -1966,7 +1966,7 @@ eina_log_abort_on_critical_level_get(void) * @param color Color of the domain name * * @return Domain index that will be used as the DOMAIN parameter on log - * macros. A negative return value means an log ocurred. + * macros. A negative return value means an log occurred. * * @note MT: safe to call from any thread. */ diff --git a/src/lib/eina_module.c b/src/lib/eina_module.c index 536e028..ef7bd29 100644 --- a/src/lib/eina_module.c +++ b/src/lib/eina_module.c @@ -329,7 +329,7 @@ EAPI Eina_Module *eina_module_new(const char *file) * This function calls eina_module_unload() if @p m has been previously * loaded and frees the allocated memory. On success this function * returns EINA_TRUE and EINA_FALSE otherwise. If @p m is @c NULL, the - * function returns immediatly. + * function returns immediately. */ EAPI Eina_Bool eina_module_free(Eina_Module *m) { @@ -360,7 +360,7 @@ EAPI Eina_Bool eina_module_free(Eina_Module *m) * #EINA_ERROR_MODULE_INIT_FAILED is set and #EINA_FALSE is * returned. If the module has already been loaded, it's refeence * counter is increased by one and #EINA_TRUE is returned. If @p m is - * @c NULL, the function returns immediatly #EINA_FALSE. + * @c NULL, the function returns immediately #EINA_FALSE. * * When the symbols of the shared file objetcts are not needed * anymore, call eina_module_unload() to unload the module. @@ -420,7 +420,7 @@ loaded: * shared object file is closed and if it is a internal Eina module, it * is shutted down just before. In that case, #EINA_TRUE is * returned. In all case, the reference counter is decreased. If @p m - * is @c NULL, the function returns immediatly #EINA_FALSE. + * is @c NULL, the function returns immediately #EINA_FALSE. */ EAPI Eina_Bool eina_module_unload(Eina_Module *m) { @@ -455,7 +455,7 @@ EAPI Eina_Bool eina_module_unload(Eina_Module *m) * This function returns the data associated to @p symbol of @p m. @p * m must have been loaded before with eina_module_load(). If @p m * is @c NULL, or if it has not been correctly loaded before, the - * function returns immediatly @c NULL. + * function returns immediately @c NULL. */ EAPI void *eina_module_symbol_get(const Eina_Module *m, const char *symbol) { @@ -471,7 +471,7 @@ EAPI void *eina_module_symbol_get(const Eina_Module *m, const char *symbol) * @return The file name. * * This function returns the file name passed in eina_module_new(). If - * @p m is @c NULL, the function returns immediatly @c NULL. The + * @p m is @c NULL, the function returns immediately @c NULL. The * returned value must no be freed. */ EAPI const char *eina_module_file_get(const Eina_Module *m) @@ -587,7 +587,7 @@ EAPI char *eina_module_environment_path_get(const char *env, * * This function adds to @p array the module names found in @p path * which match the cpu architecture @p arch. If @p path or @p arch is - * @c NULL, the function returns immediatly @p array. @p array can be + * @c NULL, the function returns immediately @p array. @p array can be * @c NULL. In that case, it is created with 4 elements. */ EAPI Eina_Array *eina_module_arch_list_get(Eina_Array *array, @@ -621,7 +621,7 @@ EAPI Eina_Array *eina_module_arch_list_get(Eina_Array *array, * @p path. If @p recursive is #EINA_TRUE, then recursive search is * done. The callback @p cb is called on each module found, and @p data * is passed to @p cb. If @p path is @c NULL, the function returns - * immediatly @p array. If the returned value of @p cb is 0, the + * immediately @p array. If the returned value of @p cb is 0, the * module will not be added to the list, otherwise it will be added. * @p array can be @c NULL. In that case, it is created with 4 * elements. @p cb can be @c NULL. diff --git a/src/lib/eina_quadtree.c b/src/lib/eina_quadtree.c index 668de1f..251bb96 100644 --- a/src/lib/eina_quadtree.c +++ b/src/lib/eina_quadtree.c @@ -556,7 +556,7 @@ _eina_quadtree_remove(Eina_QuadTree_Item *object) if (object->root->right) goto end; - /* The root is not usefull anymore... */ + /* The root is not useful anymore... */ if (object->root->parent) { if (object->root->parent->left == object->root) diff --git a/src/lib/eina_rbtree.c b/src/lib/eina_rbtree.c index 7e69d2c..a919ba4 100644 --- a/src/lib/eina_rbtree.c +++ b/src/lib/eina_rbtree.c @@ -492,7 +492,7 @@ eina_rbtree_inline_remove(Eina_Rbtree *root, } /** - * @brief Returned a new prefix iterator asociated to a rbtree. + * @brief Returned a new prefix iterator associated to a rbtree. * * @param root The root of rbtree. * @return A new iterator. @@ -517,7 +517,7 @@ eina_rbtree_iterator_prefix(const Eina_Rbtree *root) } /** - * @brief Returned a new prefix iterator asociated to a rbtree. + * @brief Returned a new prefix iterator associated to a rbtree. * * @param root The root of rbtree. * @return A new iterator. @@ -542,7 +542,7 @@ eina_rbtree_iterator_infix(const Eina_Rbtree *root) } /** - * @brief Returned a new prefix iterator asociated to a rbtree. + * @brief Returned a new prefix iterator associated to a rbtree. * * @param root The root of rbtree. * @return A new iterator. diff --git a/src/lib/eina_rectangle.c b/src/lib/eina_rectangle.c index 9f7920b..58b4131 100644 --- a/src/lib/eina_rectangle.c +++ b/src/lib/eina_rectangle.c @@ -611,7 +611,7 @@ eina_rectangle_pool_data_get(Eina_Rectangle_Pool *pool) * @param pool The pool. * @param w The returned width. * @param h The returned height. - * @return #EINA_TRUE on sucess, #EINA_FALSE otherwise. + * @return #EINA_TRUE on success, #EINA_FALSE otherwise. * * This function returns the width and height of @p pool and store * them in respectively @p w and @p h if they are not @c NULL. If diff --git a/src/lib/eina_str.c b/src/lib/eina_str.c index 24f4f8e..bd9badb 100644 --- a/src/lib/eina_str.c +++ b/src/lib/eina_str.c @@ -197,7 +197,7 @@ eina_str_split_full_helper(const char *str, * NUL-terminated string @p src to @p dst, NUL-terminating the result * (unless @p siz is equal to 0). The returned value is the length of * @p src. If the returned value is greater than @p siz, truncation - * occured. + * occurred. */ EAPI size_t eina_strlcpy(char *dst, const char *src, size_t siz) diff --git a/src/lib/eina_strbuf_common.c b/src/lib/eina_strbuf_common.c index eee3323..c96e701 100644 --- a/src/lib/eina_strbuf_common.c +++ b/src/lib/eina_strbuf_common.c @@ -705,7 +705,7 @@ static const char __STRBUF_STR_MAGIC_STR[] = "Eina Strbuf"; * @param n The number of the fitting string. * @return #EINA_TRUE on success, #EINA_FALSE on failure. * - * This function replaces the n-th occurence of @p str in @p buf with + * This function replaces the n-th occurrence of @p str in @p buf with * @p with. It returns #EINA_FALSE on failure, #EINA_TRUE otherwise. */ EAPI Eina_Bool @@ -769,7 +769,7 @@ eina_strbuf_replace(Eina_Strbuf *buf, * @param with The replaceing string. * @return How often the string was replaced. * - * This function replaces all the occurences of @p str in @ buf with + * This function replaces all the occurrences of @p str in @ buf with * the string @p with. This function returns the number of times @p str * has been replaced. On failure, it returns 0. */ diff --git a/src/lib/eina_stringshare.c b/src/lib/eina_stringshare.c index a35f08f..644915b 100644 --- a/src/lib/eina_stringshare.c +++ b/src/lib/eina_stringshare.c @@ -594,7 +594,7 @@ eina_stringshare_shutdown(void) * This function decreases the reference counter associated to @p str * if it exists. If that counter reaches 0, the memory associated to * @p str is freed. If @p str is NULL, the function returns - * immediatly. + * immediately. * * Note that if the given pointer is not shared or NULL, bad things * will happen, likely a segmentation fault. diff --git a/src/lib/eina_ustringshare.c b/src/lib/eina_ustringshare.c index 142472e..8fe18c8 100644 --- a/src/lib/eina_ustringshare.c +++ b/src/lib/eina_ustringshare.c @@ -113,7 +113,7 @@ eina_ustringshare_shutdown(void) * This function decreases the reference counter associated to @p str * if it exists. If that counter reaches 0, the memory associated to * @p str is freed. If @p str is NULL, the function returns - * immediatly. + * immediately. * * Note that if the given pointer is not shared or NULL, bad things * will happen, likely a segmentation fault. diff --git a/src/modules/mp/buddy/eina_buddy.c b/src/modules/mp/buddy/eina_buddy.c index 722528f..bc627df 100644 --- a/src/modules/mp/buddy/eina_buddy.c +++ b/src/modules/mp/buddy/eina_buddy.c @@ -20,7 +20,7 @@ * This is a naive 'buddy' allocator following Knuth's documentation. * The main difference is that we dont store the block information * on the block memory itself but on another malloc'd area. - * This is useful for managing memory which isnt as fast as the main + * This is useful for managing memory which isn't as fast as the main * memory like the video memory * The algorithm uses an area to store the linked list of blocks. * Each block size is equal to the minimum allocatable block size for diff --git a/src/modules/mp/one_big/eina_one_big.c b/src/modules/mp/one_big/eina_one_big.c index 4867037..27bfe83 100644 --- a/src/modules/mp/one_big/eina_one_big.c +++ b/src/modules/mp/one_big/eina_one_big.c @@ -221,7 +221,7 @@ eina_one_big_shutdown(void *data) pool->name); if (pool->over > 0) - INF("Bad news we are loosing track of pointer from mempool [%s]\n", + INF("Bad news we are losing track of pointer from mempool [%s]\n", pool->name); #endif diff --git a/src/tests/evas_hash.c b/src/tests/evas_hash.c index 27d36a6..33615af 100644 --- a/src/tests/evas_hash.c +++ b/src/tests/evas_hash.c @@ -403,7 +403,7 @@ evas_hash_size(const Evas_Hash *hash) * hash tale pointed to by @p hash. Any entries in the table that the program * has no more pointers for elsewhere may now be lost, so this should only be * called if the program has lready freed any allocated data in the hash table - * or has the pointers for data in teh table stored elswehere as well. + * or has the pointers for data in the table stored elswehere as well. * * Example: * @code diff --git a/src/tests/evas_list.c b/src/tests/evas_list.c index 00ee11d..55e301f 100644 --- a/src/tests/evas_list.c +++ b/src/tests/evas_list.c @@ -258,7 +258,7 @@ evas_list_append_relative_list(Evas_List *list, } /** - * Prepend a data pointer to a linked list before the memeber specified + * Prepend a data pointer to a linked list before the member specified * @param list The list handle to prepend @p data too * @param data The data pointer to prepend to list @p list before @p relative * @param relative The data pointer before which to insert @p data @@ -765,7 +765,7 @@ evas_list_data(const Evas_List *list) * This function returns how many members in the specified list: @p list. If * the list is empty (NULL), 0 is returned. * - * NB: This is an order-1 operation and takes the same tiem regardless of the + * NB: This is an order-1 operation and takes the same time regardless of the * length of the list. * * Example: diff --git a/src/tests/strlog b/src/tests/strlog index 0b3c5b7..d9fc2af 100644 --- a/src/tests/strlog +++ b/src/tests/strlog @@ -22305,7 +22305,7 @@ strings[3709] = str->add("load"); strings[1841] = str->add(strings[1841]); strings[1712] = str->add(strings[1712]); strings[3710] = str->add("0.16.999.043"); -strings[3711] = str->add("Copyright © 1999-2008, by the Enlightenment Development Team.

We hope you enjoy using this software as much as we enjoyed writing it.

This software is provided as-is with no explicit or implied warranty. This software is governed by licensing conditions, so please see the COPYING and COPYING-PLAIN licence files installed on your system.

Enlightenment is under HEAVY DEVELOPMENT and it is not stable. Many features are incomplete or even non-existant yet and may have many bugs. You have been WARNED!"); +strings[3711] = str->add("Copyright © 1999-2008, by the Enlightenment Development Team.

We hope you enjoy using this software as much as we enjoyed writing it.

This software is provided as-is with no explicit or implied warranty. This software is governed by licensing conditions, so please see the COPYING and COPYING-PLAIN licence files installed on your system.

Enlightenment is under HEAVY DEVELOPMENT and it is not stable. Many features are incomplete or even non-existent yet and may have many bugs. You have been WARNED!"); strings[3712] = str->add("e,action,close"); strings[3713] = str->add("The TeamThe Rasterman (Carsten Haitzler)
Ibukun Olumuyiwa
Sebastian Dransfeld
HandyAndE (Andrew Williams)
CodeWarrior (Hisham Mardam Bey)
dj2 (Dan Sinclair)
Tilman Sauerbeck
Aleksej Struk
Brian Mattern
devilhorns (Christopher Michael)
/dev/urandom (Viktor Kojouharov)
ilLogict
Stafford Horne
Cedric Bail
onefang (David Seikel)
Stephen Houston
Byron Hillis
Ravenlock (Eric Schuele)
ManoWarrior (Luchezar Petkov)
morlenxus (Brian Miculcy)
"); strings[3714] = str->add("font"); -- 2.7.4