Fix microsecond() range
This commit is contained in:
parent
ab321b16e6
commit
ed107c94b4
1 changed files with 2 additions and 2 deletions
|
@ -54,11 +54,11 @@
|
|||
-type hour() :: 0..23.
|
||||
-type minute() :: 0..59.
|
||||
-type second() :: 0..59.
|
||||
-type microsecond() :: 0..1000000.
|
||||
-type microsecond() :: 0..999999.
|
||||
|
||||
-type daynum() :: 1..7.
|
||||
-type date() :: {year(),month(),day()}.
|
||||
-type time() :: {hour(),minute(),second()} |{hour(),minute(),second(), microsecond()}.
|
||||
-type time() :: {hour(),minute(),second()} | {hour(),minute(),second(),microsecond()}.
|
||||
-type datetime() :: {date(),time()}.
|
||||
-type now() :: {integer(),integer(),integer()}.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue