From 853d943acda6fb95a175580f72265d1e648fda75 Mon Sep 17 00:00:00 2001 From: jtmoon79 <815261+jtmoon79@users.noreply.github.com> Date: Fri, 2 Sep 2022 14:41:54 -0700 Subject: [PATCH] remove errant comment [ci skip] --- src/format/strftime.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/format/strftime.rs b/src/format/strftime.rs index eacb68a485..05abe99ccb 100644 --- a/src/format/strftime.rs +++ b/src/format/strftime.rs @@ -468,9 +468,6 @@ impl<'a> Iterator for StrftimeItems<'a> { // whitespace Some(c) if c.is_whitespace() => { - // LAST WORKING HERE 20220830 must compare whitespace chars - // wait, are any tests checking for mismatching whitespace? what about wide chars? - // same for case of literals below let ws = self.remainder; let mut end: usize = 0; for (offset, c_) in self.remainder.char_indices() {