[clang-tools-extra] r217377 - Fixed a typo.
Alexander Kornienko
alexfh at google.com
Mon Sep 8 08:04:36 PDT 2014
Author: alexfh
Date: Mon Sep 8 10:04:35 2014
New Revision: 217377
URL: http://llvm.org/viewvc/llvm-project?rev=217377&view=rev
Log:
Fixed a typo.
Modified:
clang-tools-extra/trunk/docs/clang-tidy.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy.rst?rev=217377&r1=217376&r2=217377&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy.rst Mon Sep 8 10:04:35 2014
@@ -344,7 +344,7 @@ The script provides multiple configurati
* The default set of checks can be overridden using the ``-checks`` argument,
taking the identical format as :program:`clang-tidy` does. For example
- ``-checks='.*,misc-use-override'`` will run the ``misc-use-override``
+ ``-checks='-*,misc-use-override'`` will run the ``misc-use-override``
checker only.
* To restrict the files examined you can provide one or more regex arguments
@@ -357,3 +357,4 @@ The script provides multiple configurati
* To apply suggested fixes ``-fix`` can be passed as an argument. This gathers
all changes in a temporary directory and applies them. Passing ``-format``
will run clang-format over changed lines.
+
More information about the cfe-commits
mailing list