Wording error
I think you mean minutes here :) There are no seconds in the TZ Offset
This commit is contained in:
parent
b399dda17e
commit
c67f804f19
|
@ -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.
|
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.
|
Instead of keeping this as is, we're mapping it to the offset in seconds.
|
||||||
We will see why later.
|
We will see why later.
|
||||||
|
|
Loading…
Reference in a new issue