aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/process
diff options
context:
space:
mode:
authorAyan Shafqat <ayan.x.shafqat@gmail.com>2017-05-18 14:32:57 -0400
committerJonathan Corbet <corbet@lwn.net>2017-06-05 16:12:08 -0600
commit68f04b571da49c246eb54a7fe46233f17c77ad0f (patch)
tree956d807ce565cc0fec388c918c7967c0c659408f /Documentation/process
parentdocs: driver-api: i2c: remove some outdated information (diff)
downloadlinux-dev-68f04b571da49c246eb54a7fe46233f17c77ad0f.tar.xz
linux-dev-68f04b571da49c246eb54a7fe46233f17c77ad0f.zip
Doc: fix a markup error in coding-style.rst
The "\n\t" sequence needs to be quoted or it will not render properly. [jc: no signoff from the author, but it's trivial] Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/process')
-rw-r--r--Documentation/process/coding-style.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/process/coding-style.rst b/Documentation/process/coding-style.rst
index d20d52a4d812..a20b44a40ec4 100644
--- a/Documentation/process/coding-style.rst
+++ b/Documentation/process/coding-style.rst
@@ -980,8 +980,8 @@ do so, though, and doing so unnecessarily can limit optimization.
When writing a single inline assembly statement containing multiple
instructions, put each instruction on a separate line in a separate quoted
-string, and end each string except the last with \n\t to properly indent the
-next instruction in the assembly output:
+string, and end each string except the last with ``\n\t`` to properly indent
+the next instruction in the assembly output:
.. code-block:: c