Skip to content

Commit 809c8a4

Browse files
committed
unnecessary -> redundant
1 parent efb594a commit 809c8a4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

clang-tools-extra/clang-tidy/readability/RedundantTypenameCheck.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
namespace clang::tidy::readability {
1515

16-
/// Finds unnecessary uses of the `typename` keyword.
16+
/// Finds redundant uses of the `typename` keyword.
1717
///
1818
/// For the user-facing documentation see:
1919
/// https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-typename.html

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ New checks
211211
- New :doc:`readability-redundant-typename
212212
<clang-tidy/checks/readability/redundant-typename>` check.
213213

214-
Finds unnecessary uses of the ``typename`` keyword.
214+
Finds redundant uses of the ``typename`` keyword.
215215

216216
New check aliases
217217
^^^^^^^^^^^^^^^^^

clang-tools-extra/docs/clang-tidy/checks/readability/redundant-typename.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
readability-redundant-typename
44
==============================
55

6-
Finds unnecessary uses of the ``typename`` keyword.
6+
Finds redundant uses of the ``typename`` keyword.
77

8-
``typename`` is unnecessary in two cases. First, before non-dependent names:
8+
``typename`` is redundant in two cases. First, before non-dependent names:
99

1010
.. code-block:: c++
1111

0 commit comments

Comments
 (0)