Fix microsecond() range

This commit is contained in:
Radek Szymczyszyn 2016-08-19 11:03:44 +02:00
parent ab321b16e6
commit ed107c94b4

View file

@ -54,7 +54,7 @@
-type hour() :: 0..23. -type hour() :: 0..23.
-type minute() :: 0..59. -type minute() :: 0..59.
-type second() :: 0..59. -type second() :: 0..59.
-type microsecond() :: 0..1000000. -type microsecond() :: 0..999999.
-type daynum() :: 1..7. -type daynum() :: 1..7.
-type date() :: {year(),month(),day()}. -type date() :: {year(),month(),day()}.