diff options
author | Thorsten Blum <thorsten.blum@toblux.com> | 2024-02-03 00:13:16 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2024-02-05 18:15:31 +0100 |
commit | 932be49b71e7a67a288b29e78c45bd095a4be704 (patch) | |
tree | b7df7dffbe62b0aef317072694d4cf957e1c67ba /Documentation/translations/zh_TW | |
parent | docs: maintainer: add existing SoC and netdev profiles (diff) | |
download | linux-932be49b71e7a67a288b29e78c45bd095a4be704.tar.xz linux-932be49b71e7a67a288b29e78c45bd095a4be704.zip |
Documentation: coding-style: Fix indentation in code-blocks
- Remove spaces in C code-blocks to align error labels consistently
- Replace tab characters with spaces in emacs-lisp code blocks
Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20240202231316.7606-1-thorsten.blum@toblux.com
Diffstat (limited to 'Documentation/translations/zh_TW')
-rw-r--r-- | Documentation/translations/zh_TW/process/coding-style.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/translations/zh_TW/process/coding-style.rst b/Documentation/translations/zh_TW/process/coding-style.rst index f11dbb65ca21..c7ac504f6f40 100644 --- a/Documentation/translations/zh_TW/process/coding-style.rst +++ b/Documentation/translations/zh_TW/process/coding-style.rst @@ -526,9 +526,9 @@ Linux 裏這是提倡的做法,因爲這樣可以很簡單的給讀者提供 .. code-block:: c - err_free_bar: + err_free_bar: kfree(foo->bar); - err_free_foo: + err_free_foo: kfree(foo); return ret; |