summaryrefslogtreecommitdiff
path: root/Documentation/translations/sp_SP
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@toblux.com>2024-02-03 02:13:16 +0300
committerJonathan Corbet <corbet@lwn.net>2024-02-05 20:15:31 +0300
commit932be49b71e7a67a288b29e78c45bd095a4be704 (patch)
treeb7df7dffbe62b0aef317072694d4cf957e1c67ba /Documentation/translations/sp_SP
parentd74029f6c28ff83861c209d738670cf800441901 (diff)
downloadlinux-932be49b71e7a67a288b29e78c45bd095a4be704.tar.xz
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/sp_SP')
-rw-r--r--Documentation/translations/sp_SP/process/coding-style.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/translations/sp_SP/process/coding-style.rst b/Documentation/translations/sp_SP/process/coding-style.rst
index a0261ba5b902..a37274764371 100644
--- a/Documentation/translations/sp_SP/process/coding-style.rst
+++ b/Documentation/translations/sp_SP/process/coding-style.rst
@@ -604,9 +604,9 @@ Normalmente la solución para esto es dividirlo en dos etiquetas de error
.. code-block:: c
- err_free_bar:
+ err_free_bar:
kfree(foo->bar);
- err_free_foo:
+ err_free_foo:
kfree(foo);
return ret;
@@ -698,7 +698,7 @@ sanos. Para hacer esto último, puede pegar lo siguiente en su archivo
(c-offsets-alist . (
(arglist-close . c-lineup-arglist-tabs-only)
(arglist-cont-nonempty .
- (c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
+ (c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
(arglist-intro . +)
(brace-list-intro . +)
(c . c-lineup-C-comments)