diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2021-08-31 21:30:22 +0200 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2021-08-31 21:31:20 +0200 |
commit | c28473fe4aded9649f4b552d8259c22a43f0d68e (patch) | |
tree | 31f505df3e030000bc92658544081f932d03e9e3 /llvm/docs/CommandGuide/FileCheck.rst | |
parent | 84f99ef2b196565d4a8b340d4eb9c923a5781697 (diff) | |
download | llvm-c28473fe4aded9649f4b552d8259c22a43f0d68e.zip llvm-c28473fe4aded9649f4b552d8259c22a43f0d68e.tar.gz llvm-c28473fe4aded9649f4b552d8259c22a43f0d68e.tar.bz2 |
Fix some typos in the llvm docs
Diffstat (limited to 'llvm/docs/CommandGuide/FileCheck.rst')
-rw-r--r-- | llvm/docs/CommandGuide/FileCheck.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/FileCheck.rst b/llvm/docs/CommandGuide/FileCheck.rst index a4e3e06..c594076 100644 --- a/llvm/docs/CommandGuide/FileCheck.rst +++ b/llvm/docs/CommandGuide/FileCheck.rst @@ -431,7 +431,7 @@ However, this would be a bad test: if the value for ``foo`` changes, the test would still pass because the "``CHECK: Value: 1``" line would match the value from ``baz``. To fix this, you could add ``CHECK-NEXT`` matchers for every ``FieldN:`` line, but that would be verbose, and need to be updated when -``Field4`` is added. A more succint way to write the test using the +``Field4`` is added. A more succinct way to write the test using the "``CHECK-SAME:``" matcher would be as follows: .. code-block:: text |