Skip to content

Commit 4a44de6

Browse files
committed
Fix typo:
1 parent 4e1c48e commit 4a44de6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/src/experimental/tzdb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static void __matches(istream& __input, char __expected) {
107107

108108
static void __matches(istream& __input, string_view __expected) {
109109
for (auto __c : __expected) {
110-
_LIBCPP_ASSERT_INTERNAL(!std::isalpha(__expected) || std::islower(__c), "lowercase strings only here!");
110+
_LIBCPP_ASSERT_INTERNAL(!std::isalpha(__c) || std::islower(__c), "lowercase strings only here!");
111111
char __actual = __input.get();
112112
if (std::tolower(__actual) != __c)
113113
std::__throw_runtime_error(

0 commit comments

Comments
 (0)