]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Doc: fix a markup error in coding-style.rst
authorAyan Shafqat <ayan.x.shafqat@gmail.com>
Thu, 18 May 2017 18:32:57 +0000 (14:32 -0400)
committerJonathan Corbet <corbet@lwn.net>
Mon, 5 Jun 2017 22:12:08 +0000 (16:12 -0600)
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>
Documentation/process/coding-style.rst

index d20d52a4d8121ce5455eeb4a74d101a93946f8fb..a20b44a40ec47b376f791e7de1e1d0e4a6d698f8 100644 (file)
@@ -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