summaryrefslogtreecommitdiffstats
path: root/liblog.h
diff options
context:
space:
mode:
Diffstat (limited to 'liblog.h')
-rw-r--r--liblog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/liblog.h b/liblog.h
index 5e2fad1..fb5f097 100644
--- a/liblog.h
+++ b/liblog.h
@@ -743,23 +743,23 @@ liblog_use_stderr_for_range(struct liblog_context *ctx, const char *prefixfmt, i
* may be 0 or the OR of any of the following values:
* - LIBLOG_XLOG_CORK:
* Mark the message as incomplete an deferred
- * printing until LIBLOG_XLOG_UNCORK is used.
+ * printing until LIBLOG_XLOG_UNCORK is used
* - LIBLOG_XLOG_UNCORK:
* Output message printed since the first
* LIBLOG_XLOG_CORK (after the last
* LIBLOG_XLOG_UNCORK if any) as one complete
- * message.
+ * message
* - LIBLOG_XLOG_BACKTRACE:
* Output a backtrace even if the it is not
* configured that backtraces should be printed
- * for the selected log level.
+ * for the selected log level
* - LIBLOG_XLOG_NO_BACKTRACE:
* Do not output a backtrace even if the it is
* configured that backtraces should be printed
- * for the selected log level.
+ * for the selected log level
* - LIBLOG_XLOG_NO_TEXT:
* Do not output any new text (apport from potential
- * backtrace); allowing `fmt` to be `NULL`.
+ * backtrace); allowing `fmt` to be `NULL`
* However, LIBLOG_XLOG_CORK and LIBLOG_XLOG_UNCORK
* cannot be combined, nor can LIBLOG_XLOG_BACKTRACE
* and LIBLOG_XLOG_NO_BACKTRACE be combined