Skip to content

Commit 334a8b2

Browse files
committed
Fix bracket in strptime
1 parent 2d58063 commit 334a8b2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

functions/datetime/strptime.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,9 @@ Oy
343343
// problems (do check after WS though, as may just be WS in string before next character)
344344
return false;
345345
}
346-
// Otherwise, Extra WS in format
347-
// Adjust strings when encounter non-matching whitespace, so they align in future checks above
348-
// Will check on next iteration (against same (non-WS) string character)
349-
}
346+
// Extra WS in format
347+
// Adjust strings when encounter non-matching whitespace, so they align in future checks above
348+
// Will check on next iteration (against same (non-WS) string character)
350349
} else {
351350
j++;
352351
}

0 commit comments

Comments
 (0)