Skip to content

Commit 9c49e1e

Browse files
committed
[clang-tidy] Fix: typos in 'AllowedTypes' option in various checks
1 parent c5492e3 commit 9c49e1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

clang-tools-extra/docs/clang-tidy/checks/performance/for-range-copy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ Options
3232
iteration. Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches
3333
every type with suffix `Ref`, `ref`, `Reference` and `reference`. The default
3434
is empty. If a name in the list contains the sequence `::` it is matched
35-
against the qualified typename (i.e. `namespace::Type`, otherwise it is
35+
against the qualified typename (i.e. `namespace::Type`), otherwise it is
3636
matched against only the type name (i.e. `Type`).

clang-tools-extra/docs/clang-tidy/checks/performance/unnecessary-copy-initialization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Options
4545
copying. Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches
4646
every type with suffix `Ref`, `ref`, `Reference` and `reference`. The default
4747
is empty. If a name in the list contains the sequence `::` it is matched
48-
against the qualified typename (i.e. `namespace::Type`, otherwise it is
48+
against the qualified typename (i.e. `namespace::Type`), otherwise it is
4949
matched against only the type name (i.e. `Type`).
5050

5151
.. option:: ExcludedContainerTypes

clang-tools-extra/docs/clang-tidy/checks/performance/unnecessary-value-param.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ Options
6868
Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches every type
6969
with suffix `Ref`, `ref`, `Reference` and `reference`. The default is
7070
empty. If a name in the list contains the sequence `::` it is matched against
71-
the qualified typename (i.e. `namespace::Type`, otherwise it is matched
71+
the qualified typename (i.e. `namespace::Type`), otherwise it is matched
7272
against only the type name (i.e. `Type`).

0 commit comments

Comments
 (0)