eina: Grammar improvements

Reviewers: segfaultxavi

Reviewed By: segfaultxavi

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7058
This commit is contained in:
Bryce Harrington 2018-09-21 16:55:36 +09:00 committed by Hermet Park
parent 9d197f38bb
commit 9004dd2e9e
4 changed files with 9 additions and 9 deletions

View File

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

View File

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

View File

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

View File

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