summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-04-22 14:39:46 +0000
committerEric Christopher <echristo@gmail.com>2013-04-22 14:39:46 +0000
commitc43fdef0da7f58c726d9bf9ea61486fbd91917f8 (patch)
tree97c1be07d4141d5feae83f9b7878007d53fda797
parentb7a1df90877da4e9ed042d1827a25f7ab360d6fb (diff)
The option is spelled -use-auto, not -loop-convert.
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@180016 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/UseAutoTransform.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/UseAutoTransform.rst b/docs/UseAutoTransform.rst
index 80904a62..a322f512 100644
--- a/docs/UseAutoTransform.rst
+++ b/docs/UseAutoTransform.rst
@@ -6,7 +6,7 @@ Use-Auto Transform
The Use-Auto Transform is responsible for using the ``auto`` type specifier for
variable declarations to *improve code readability and maintainability*. The
-transform is enabled with the :option:`-loop-convert` option of
+transform is enabled with the :option:`-use-auto` option of
:program:`cpp11-migrate`. For example:
.. code-block:: c++