]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
CODING_STYLE: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 16 Feb 2026 05:35:19 +0000 (14:35 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 16 Feb 2026 05:35:21 +0000 (14:35 +0900)
Follow-up for 83b4a5bb3d6a0f565aebcba975efad8dac73abea.

docs/CODING_STYLE.md

index e15e6ee15e73a17e5b73afdefdae4a7e48e81efd..767ab6734bb83f404ba4ad8b9c7c9af32a5bdbd9 100644 (file)
@@ -705,7 +705,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later
 - Think about the log level you choose: for functions that are of the "logging"
   kind (see above), please ensure that failures we propagate should be logged
   about at `LOG_ERR` level. Failures that are noteworthy, but we proceed anyway,
-  should be loged at `LOG_WARN` level. Important informational messages should
+  should be logged at `LOG_WARN` level. Important informational messages should
   use `LOG_NOTICE` and regular informational messages should use
   `LOG_INFO`. Note that the latter is the default maximum log level, i.e. only
   `LOG_DEBUG` messages are hidden by default.