diff --git a/clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst b/clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst index 8c2c316c090da..701b67d77acaa 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/bugprone-dangling-handle.rst @@ -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.