Skip to content

Commit 9e85ef5

Browse files
Fix typo
1 parent 5f0060b commit 9e85ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ constexpr fixed_string second = "World!";
3333
static_assert(first == second); // false
3434
static_assert(first != second); // true
3535
static_assert(first < second); // true
36-
static_assert(first <= second); // false
36+
static_assert(first <= second); // true
3737
static_assert(first > second); // false
3838
static_assert(first >= second); // false
3939
static_assert(first <=> second != 0); // true

0 commit comments

Comments
 (0)