Author: Carlos Galvez Date: 2025-12-01T09:50:19+01:00 New Revision: eb711d8e142683e06ae14b652218b881896f5046
URL: https://github.com/llvm/llvm-project/commit/eb711d8e142683e06ae14b652218b881896f5046 DIFF: https://github.com/llvm/llvm-project/commit/eb711d8e142683e06ae14b652218b881896f5046.diff LOG: [clang-tidy][doc] Fix incorrect link syntax in cppcoreguidelines-pro-… (#170088) …bounds-avoid-unchecked-container-access Missing a trailing underscore to render it as a link. Co-authored-by: Carlos Gálvez <[email protected]> Added: Modified: clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/pro-bounds-avoid-unchecked-container-access.rst Removed: ################################################################################ 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 -<https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#slcon3-avoid-bounds-errors>` +<https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#slcon3-avoid-bounds-errors>`_ guideline and is part of the `Bounds Safety (Bounds 4) -<https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#pro-bounds-arrayindex>` +<https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#pro-bounds-arrayindex>`_ profile from the C++ Core Guidelines. Options _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
