[docs] Fix documentation for bugprone-dangling-handle
authorMalcolm Parsons <malcolm.parsons@gmail.com>
Wed, 12 May 2021 16:11:19 +0000 (17:11 +0100)
committerMalcolm Parsons <malcolm.parsons@gmail.com>
Wed, 12 May 2021 16:20:15 +0000 (17:20 +0100)
string_view isn't experimental anymore.
This check has always handled both forms.

Reviewed By: aaron.ballman

Differential Revision: https://reviews.llvm.org/D102313

clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst

index 8c2c316..701b67d 100644 (file)
@@ -3,8 +3,7 @@
 bugprone-dangling-handle
 ========================
 
-Detect dangling references in value handles like
-``std::experimental::string_view``.
+Detect dangling references in value handles like ``std::string_view``.
 These dangling references can be a result of constructing handles from temporary
 values, where the temporary is destroyed soon after the handle is created.
 
@@ -35,4 +34,5 @@ Options
 .. option:: HandleClasses
 
    A semicolon-separated list of class names that should be treated as handles.
-   By default only ``std::experimental::basic_string_view`` is considered.
+   By default only ``std::basic_string_view`` and
+   ``std::experimental::basic_string_view`` are considered.