summaryrefslogtreecommitdiffstats
path: root/liblog.h
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-02-09 15:08:00 +0100
committerMattias Andrée <m@maandree.se>2025-02-09 15:08:00 +0100
commitd85f41c7366bf8d4a58e6e7607e5c3e901d325c8 (patch)
tree9c55fd96079fbbf6b49d7b64aa50704d9061a98f /liblog.h
parentFirst commit (everything was written 2024) (diff)
downloadliblog-d85f41c7366bf8d4a58e6e7607e5c3e901d325c8.tar.gz
liblog-d85f41c7366bf8d4a58e6e7607e5c3e901d325c8.tar.bz2
liblog-d85f41c7366bf8d4a58e6e7607e5c3e901d325c8.tar.xz
Fix doc style
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-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