Skip to content

Commit f4d0b35

Browse files
committed
Use code formatting style on typedef word in documentation.
1 parent 5f888b4 commit f4d0b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/docs/clang-tidy/checks/bugprone/tagged-union-member-count.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ system header files and the ``std`` namespace.
4343
pthread_mutex_t Mutex;
4444
};
4545

46-
The ``pthread_mutex_t`` type may be defined as a union behind a typedef,
46+
The ``pthread_mutex_t`` type may be defined as a union behind a ``typedef``,
4747
in which case the check could mistake this type as a user-defined tagged union.
4848
After all it has exactly one enum data member and exactly one union data member.
4949
To avoid false-positive cases originating from this, unions and enums from

0 commit comments

Comments
 (0)