diff --git a/src/lib/eina/eina_counter.h b/src/lib/eina/eina_counter.h index 603190ee2b..6cb15b982b 100644 --- a/src/lib/eina/eina_counter.h +++ b/src/lib/eina/eina_counter.h @@ -32,7 +32,7 @@ * counter, use eina_counter_new(). To free it, use * eina_counter_free(). * - * To time a part of a code, call eina_counter_start() just before it, + * To time a code sequence, call eina_counter_start() just before it, * and eina_counter_stop() just after it. Each time you start timing * a code, a clock is added to a list. You can give the number of that * clock with the second argument of eina_counter_stop(). To send all diff --git a/src/lib/eina/eina_evlog.h b/src/lib/eina/eina_evlog.h index 532fe81047..6843602ff7 100644 --- a/src/lib/eina/eina_evlog.h +++ b/src/lib/eina/eina_evlog.h @@ -23,10 +23,10 @@ * @addtogroup Eina_Evlog Event Log Debugging * @ingroup Eina * - * @brief These functions are use internally by EFL in general for profiling. - * This API is not considered stable or intended for use outside of EFL - * itself at this stage, so do not use this unless you wish to keep up. The - * format of debug logs may and likely will change as this feature matures. + * @brief These functions are used internally by EFL in general for + * profiling. This API is not considered stable or intended for use + * outside of EFL itself at this stage. The format of debug logs may and + * likely will change as this feature matures. * * @{ * @@ -56,7 +56,7 @@ struct _Eina_Evlog_Buf }; /** - * @brief Logs an event in our event log for profiling data. + * @brief Logs an event for profiling data. * * Log some interesting event inside of EFL, e.g. a wakeup (and why etc.). * The @p event string must always be provided and be of the form: diff --git a/src/lib/eina/eina_file.h b/src/lib/eina/eina_file.h index 78c2b65596..bc1543e26e 100644 --- a/src/lib/eina/eina_file.h +++ b/src/lib/eina/eina_file.h @@ -75,7 +75,7 @@ * out file size and type. * * @warning All functions in this group are @b blocking, which means they may - * take a long time to return, use them carefully. + * take a long time to return; use them carefully. * * See an example @ref eina_file_example_01_page "here". * diff --git a/src/lib/eina/eina_main.h b/src/lib/eina/eina_main.h index 4b4acfc5d8..7be3bfdc0c 100644 --- a/src/lib/eina/eina_main.h +++ b/src/lib/eina/eina_main.h @@ -94,13 +94,13 @@ EAPI extern Eina_Error EINA_ERROR_NOT_IMPLEMENTED; * * @li @c EINA_LOG_ABORT_LEVEL=LEVEL, where level is an integer such * as 0 (critical) to 4 (debug). This will cause any messages at - * that level or less (i.e.: if 4, then messages at level 0 also + * that level or lower (i.e.: if 4, then messages at level 0 also * apply) to abort(3) the application if @c EINA_LOG_ABORT=1 was * defined. * * @li @c EINA_LOG_BACKTRACE=LEVEL, where level is an integer such as * 0 (critical) to 4 (debug). This will cause any messages at - * that level or less (i.e.: if 4, then messages at level 0 also + * that level or lower (i.e.: if 4, then messages at level 0 also * apply) to dump a backtrace. Note that if systemd-journal is * used, it's going to the journal as well. *