Replaced UserNullMacros with NullMacros in modernize-use-nullptr check docs
authorSylvestre Ledru <sylvestre@debian.org>
Sat, 4 Mar 2017 14:06:26 +0000 (14:06 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Sat, 4 Mar 2017 14:06:26 +0000 (14:06 +0000)
By patch Peter Goldsborough on https://github.com/llvm-mirror/clang-tools-extra/pull/14
See https://github.com/llvm-mirror/clang-tools-extra/blob/2cd835ee5bcd6c4944d7e30826668ec38db40b38/clang-tidy/modernize/UseNullptrCheck.cpp#L466

llvm-svn: 296970

clang-tools-extra/docs/clang-tidy/checks/modernize-use-nullptr.rst

index fb2d3d9..e65b65b 100644 (file)
@@ -39,7 +39,7 @@ transforms to:
 Options
 -------
 
-.. option:: UserNullMacros
+.. option:: NullMacros
 
    Comma-separated list of macro names that will be transformed along with
    ``NULL``. By default this check will only replace the ``NULL`` macro and will
@@ -64,4 +64,4 @@ transforms to:
     int *p = nullptr;
   }
 
-if the :option:`UserNullMacros` option is set to ``MY_NULL``.
+if the :option:`NullMacros` option is set to ``MY_NULL``.