summaryrefslogtreecommitdiffstats
path: root/Documentation/translations/zh_TW
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@toblux.com>2024-02-03 00:13:16 +0100
committerJonathan Corbet <corbet@lwn.net>2024-02-05 10:15:31 -0700
commit932be49b71e7a67a288b29e78c45bd095a4be704 (patch)
treeb7df7dffbe62b0aef317072694d4cf957e1c67ba /Documentation/translations/zh_TW
parentd74029f6c28ff83861c209d738670cf800441901 (diff)
downloadlinux-932be49b71e7a67a288b29e78c45bd095a4be704.tar.gz
linux-932be49b71e7a67a288b29e78c45bd095a4be704.tar.bz2
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.rst4
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;