Skip to content

Commit 2830bc3

Browse files
committed
Comment only: Annotate FIXMEs in std::time
1 parent 37f2330 commit 2830bc3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/time.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,8 @@ fn strptime(s: str, format: str) -> result<tm, str> {
313313
.chain { |pos| parse_type(s, pos, 'd', tm) }
314314
}
315315
'H' {
316-
// FIXME: range check.
316+
// FIXME: range check. (#2350 -- same issue for all FIXMEs in this
317+
// file.)
317318
alt match_digits(s, pos, 2u, false) {
318319
some(item) { let (v, pos) = item; tm.tm_hour = v; ok(pos) }
319320
none { err("Invalid hour") }

0 commit comments

Comments
 (0)