File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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
25012501be 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
25032503correct. Please note that `csa_mark_sanitized ` function is only declared and
25042504used during Clang Static Analysis and skipped in (production) builds.
25052505
Original file line number Diff line number Diff 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 >`_.
Original file line number Diff line number Diff 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
1313This page contains information regarding C++23 module support in libc++.
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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----------------------
You can’t perform that action at this time.
0 commit comments