diff --git a/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/pro-bounds-avoid-unchecked-container-access.rst b/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/pro-bounds-avoid-unchecked-container-access.rst index fe78ad8056443..38143c94cd3ae 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/pro-bounds-avoid-unchecked-container-access.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/pro-bounds-avoid-unchecked-container-access.rst @@ -29,9 +29,9 @@ STL containers for which ``operator[]`` is well-defined for all inputs are excluded from this check (e.g.: ``std::map::operator[]``). This check enforces part of the `SL.con.3 -` +`_ guideline and is part of the `Bounds Safety (Bounds 4) -` +`_ profile from the C++ Core Guidelines. Options