Skip to content

Commit 32870da

Browse files
ccotterkazutakahirata
authored andcommitted
Fix typos in documentation
1 parent 667a195 commit 32870da

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Changes in existing checks
196196

197197
- Improved :doc:`misc-include-cleaner
198198
<clang-tidy/checks/misc/include-cleaner>` check by adding option
199-
`DeduplicateFindings` to output one finding per symbol occurence.
199+
`DeduplicateFindings` to output one finding per symbol occurrence.
200200

201201
- Improved :doc:`modernize-loop-convert
202202
<clang-tidy/checks/modernize/loop-convert>` to support for-loops with

clang-tools-extra/docs/clang-tidy/checks/modernize/use-std-print.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ If the call is deemed suitable for conversion then:
8181
is of ``signed char`` or ``unsigned char`` type are wrapped in a
8282
``reinterpret_cast<const char *>``.
8383
- any arguments where the format string and the parameter differ in
84-
signedness will be wrapped in an approprate ``static_cast`` if `StrictMode`
84+
signedness will be wrapped in an appropriate ``static_cast`` if `StrictMode`
8585
is enabled.
8686
- any arguments that end in a call to ``std::string::c_str()`` or
8787
``std::string::data()`` will have that call removed.

clang/docs/analyzer/checkers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2499,7 +2499,7 @@ and add the `csa_mark_sanitized` function.
24992499
25002500
Then calling `csa_mark_sanitized(X)` will tell the analyzer that `X` is safe to
25012501
be used after this point, because its contents are verified. It is the
2502-
responisibility of the programmer to ensure that this verification was indeed
2502+
responsibility of the programmer to ensure that this verification was indeed
25032503
correct. Please note that `csa_mark_sanitized` function is only declared and
25042504
used during Clang Static Analysis and skipped in (production) builds.
25052505

libc/docs/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ a list of open projects that one can start with:
1313
`LLVM style <https://llvm.org/docs/CodingStandards.html>`_ but differs in a
1414
few aspects: We use ``snake_case`` for non-constant variable and function
1515
names,``CamelCase`` for internal type names (those which are not defined in a
16-
public header), and ``CAPITILIZED_SNAKE_CASE`` for constants. When we started
16+
public header), and ``CAPITALIZED_SNAKE_CASE`` for constants. When we started
1717
working on the project, we started using the general LLVM style for
1818
everything. However, for a short period, we switched to the style that is
1919
currently followed by the `LLD project <https://github.com/llvm/llvm-project/tree/main/lld>`_.

libcxx/docs/Modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Modules in libc++
77
.. warning:: Modules are an experimental feature. It has additional build
88
requirements and not all libc++ configurations are supported yet.
99

10-
The work is still in an early developement state and not
10+
The work is still in an early development state and not
1111
considered stable nor complete
1212

1313
This page contains information regarding C++23 module support in libc++.

llvm/docs/CommandGuide/llvm-symbolizer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ OPTIONS
268268
``#<number>[.<inline>] <address> <function> <file>:<line>:<col> (<module>+<relative address>)``
269269

270270
``<inline>`` provides frame numbers for calls inlined into the caller
271-
coresponding to ``<number>``. The inlined call numbers start at 1 and increase
271+
corresponding to ``<number>``. The inlined call numbers start at 1 and increase
272272
from callee to caller.
273273

274274
``<address>`` is an address inside the call instruction to the function. The

llvm/docs/FatLTO.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ extending support to other linkers isn't planned for now.
6767
.. NOTE
6868
For standard linking the fat object files should be usable by any
6969
linker capable of using ELF objects, since the ``.llvm.lto`` section is
70-
marked ``SHF_EXLUDE``.
70+
marked ``SHF_EXCLUDE``.
7171
7272
Supported File Formats
7373
----------------------

0 commit comments

Comments
 (0)