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
196
196
197
197
- Improved :doc: `misc-include-cleaner
198
198
<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 .
200
200
201
201
- Improved :doc: `modernize-loop-convert
202
202
<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:
81
81
is of ``signed char `` or ``unsigned char `` type are wrapped in a
82
82
``reinterpret_cast<const char *> ``.
83
83
- 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 `
85
85
is enabled.
86
86
- any arguments that end in a call to ``std::string::c_str() `` or
87
87
``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.
2499
2499
2500
2500
Then calling `csa_mark_sanitized(X) ` will tell the analyzer that `X ` is safe to
2501
2501
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
2503
2503
correct. Please note that `csa_mark_sanitized ` function is only declared and
2504
2504
used during Clang Static Analysis and skipped in (production) builds.
2505
2505
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ a list of open projects that one can start with:
13
13
`LLVM style <https://llvm.org/docs/CodingStandards.html >`_ but differs in a
14
14
few aspects: We use ``snake_case `` for non-constant variable and function
15
15
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
17
17
working on the project, we started using the general LLVM style for
18
18
everything. However, for a short period, we switched to the style that is
19
19
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++
7
7
.. warning :: Modules are an experimental feature. It has additional build
8
8
requirements and not all libc++ configurations are supported yet.
9
9
10
- The work is still in an early developement state and not
10
+ The work is still in an early development state and not
11
11
considered stable nor complete
12
12
13
13
This 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
268
268
``#<number>[.<inline>] <address> <function> <file>:<line>:<col> (<module>+<relative address>) ``
269
269
270
270
``<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
272
272
from callee to caller.
273
273
274
274
``<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.
67
67
.. NOTE
68
68
For standard linking the fat object files should be usable by any
69
69
linker capable of using ELF objects, since the ``.llvm.lto`` section is
70
- marked ``SHF_EXLUDE ``.
70
+ marked ``SHF_EXCLUDE ``.
71
71
72
72
Supported File Formats
73
73
----------------------
You can’t perform that action at this time.
0 commit comments