[llvm] 61e15ec - [docs] Fix indentation in FileCheck.rst

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 31 13:20:33 PDT 2020


Author: Arthur Eubanks
Date: 2020-08-31T13:20:04-07:00
New Revision: 61e15ecab50943d8e62add494ff35d1cd165758d

URL: https://github.com/llvm/llvm-project/commit/61e15ecab50943d8e62add494ff35d1cd165758d
DIFF: https://github.com/llvm/llvm-project/commit/61e15ecab50943d8e62add494ff35d1cd165758d.diff

LOG: [docs] Fix indentation in FileCheck.rst

Fixes
C:\src\llvm-project\llvm\docs\CommandGuide\FileCheck.rst:745:Bullet list ends without a blank line; unexpected unindent.

Added: 
    

Modified: 
    llvm/docs/CommandGuide/FileCheck.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst
index 5e82e00415a1..ef5bb10162d9 100644
--- a/llvm/docs/CommandGuide/FileCheck.rst
+++ b/llvm/docs/CommandGuide/FileCheck.rst
@@ -742,10 +742,10 @@ The syntax to capture a numeric value is
 The syntax of ``<fmtspec>`` is: ``.<precision><conversion specifier>`` where:
 
 * ``.<precision>`` is an optional printf-style precision specifier in which
- ``<precision>`` indicates the minimum number of digits that the value matched
- must have, expecting leading zeros if needed.
+  ``<precision>`` indicates the minimum number of digits that the value matched
+  must have, expecting leading zeros if needed.
 
-*  ``<conversion specifier>`` is an optional scanf-style conversion specifier
+* ``<conversion specifier>`` is an optional scanf-style conversion specifier
   to indicate what number format to match (e.g. hex number).  Currently
   accepted format specifiers are ``%u``, ``%d``, ``%x`` and ``%X``.  If absent,
   the format specifier defaults to ``%u``.


        


More information about the llvm-commits mailing list