Skip to content

Commit bd58233

Browse files
committed
Fix spelling : convertible not able.
Code spell lint fix
1 parent 272cbf1 commit bd58233

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/beman/optional/optional.t.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,15 +313,15 @@ TEST(OptionalTest, ConvertingAssignmentValue) {
313313
TEST(OptionalTest, ConvertingValueAssignment) {
314314
struct base {};
315315

316-
struct convertable {
316+
struct convertible {
317317
operator base() { return base{}; }
318318
};
319319

320320
beman::optional::optional<base> empty;
321321
beman::optional::optional<base> engaged(base{});
322322

323-
empty = convertable{};
324-
engaged = convertable{};
323+
empty = convertible{};
324+
engaged = convertible{};
325325
EXPECT_TRUE(empty);
326326
EXPECT_TRUE(engaged);
327327
}

0 commit comments

Comments
 (0)