From c67f804f1947ef42104647b5420c63794187d5d5 Mon Sep 17 00:00:00 2001 From: Klaus Zanders Date: Tue, 21 Jul 2015 13:32:01 +0200 Subject: [PATCH] Wording error I think you mean minutes here :) There are no seconds in the TZ Offset --- _posts/2015-07-15-omnomnom-parsing-iso8601-dates-using-nom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2015-07-15-omnomnom-parsing-iso8601-dates-using-nom.md b/_posts/2015-07-15-omnomnom-parsing-iso8601-dates-using-nom.md index 922f20f..5ce9f51 100644 --- a/_posts/2015-07-15-omnomnom-parsing-iso8601-dates-using-nom.md +++ b/_posts/2015-07-15-omnomnom-parsing-iso8601-dates-using-nom.md @@ -243,7 +243,7 @@ named!(timezone_hour <&[u8], i32>, chain!( ~~~ We can re-use our already existing parsers and once again chain them to get what we want. -The seconds are optional (and might be separated using a colon). +The minutes are optional (and might be separated using a colon). Instead of keeping this as is, we're mapping it to the offset in seconds. We will see why later.