Skip to content

Commit b81904f

Browse files
committed
[clang-tidy] improved docs by filling lines to 80-character limit
1 parent ed89910 commit b81904f

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ Changes in existing checks
107107
additional C++ member functions to match.
108108

109109
- Improved :doc:`misc-const-correctness
110-
<clang-tidy/checks/misc/const-correctness>` check by adding
111-
the option `AllowedTypes`, that excludes specified types
112-
from const-correctness checking.
110+
<clang-tidy/checks/misc/const-correctness>` check by adding the option
111+
`AllowedTypes`, that excludes specified types from const-correctness
112+
checking.
113113

114114
- Improved :doc:`misc-redundant-expression
115115
<clang-tidy/checks/misc/redundant-expression>` check by providing additional

clang-tools-extra/docs/clang-tidy/checks/misc/const-correctness.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,9 @@ Options
199199
200200
.. option:: AllowedTypes (default = '')
201201

202-
A semicolon-separated list of names of types that
203-
will be excluded from const-correctness checking.
204-
Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches every type
205-
with suffix `Ref`, `ref`, `Reference` and `reference`.
206-
If a name in the list contains the sequence `::`, it is matched against
207-
the qualified type name (i.e. ``namespace::Type``), otherwise it is matched
208-
against only the type name (i.e. ``Type``).
202+
A semicolon-separated list of names of types that will be excluded from
203+
const-correctness checking. Regular expressions are accepted, e.g.
204+
`[Rr]ef(erence)?$` matches every type with suffix `Ref`, `ref`, `Reference`
205+
and `reference`. If a name in the list contains the sequence `::`, it is
206+
matched against the qualified type name (i.e. ``namespace::Type``),
207+
otherwise it is matched against only the type name (i.e. ``Type``).

0 commit comments

Comments
 (0)