Skip to content

Commit f4421e8

Browse files
Copilotdamyanp
andcommitted
Fix remaining convertable typos in docs and test comments
Co-authored-by: damyanp <[email protected]>
1 parent 1e9d882 commit f4421e8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/YamlIO.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ it is parsed. This allows dynamic types of nodes. But the YAML I/O model uses
730730
static typing, so there are limits to how you can use tags with the YAML I/O
731731
model. Recently, we added support to YAML I/O for checking/setting the optional
732732
tag on a map. Using this functionality it is even possbile to support different
733-
mappings, as long as they are convertable.
733+
mappings, as long as they are convertible.
734734

735735
To check a tag, inside your mapping() method you can use io.mapTag() to specify
736736
what the tag should be. This will also add that tag when writing yaml.

test/Transforms/SROA/basictest.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ define void @PR15674(i8* %data, i8* %src, i32 %size) {
12701270
; Arrange (via control flow) to have unmerged stores of a particular width to
12711271
; an alloca where we incrementally store from the end of the array toward the
12721272
; beginning of the array. Ensure that the final integer store, despite being
1273-
; convertable to the integer type that we end up promoting this alloca toward,
1273+
; convertible to the integer type that we end up promoting this alloca toward,
12741274
; doesn't get widened to a full alloca store.
12751275
; CHECK-LABEL: @PR15674(
12761276

tools/clang/test/SemaCXX/vector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ void test_implicit_conversions(bool Cond, char16 c16, longlong16 ll16,
184184
(void)(Cond? to_c16 : to_c16e);
185185
(void)(Cond? to_ll16e : to_ll16);
186186

187-
// These 2 are convertable with -flax-vector-conversions (default)
187+
// These 2 are convertible with -flax-vector-conversions (default)
188188
(void)(Cond? to_c16 : to_ll16);
189189
(void)(Cond? to_c16e : to_ll16e);
190190
}

0 commit comments

Comments
 (0)