Skip to content

Commit abc48ad

Browse files
authored
Update about.md (#740)
Fix typos.
1 parent 9b29c5d commit abc48ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

concepts/date-time/about.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
In Common Lisp time is represented in three ways
44

55
- Universal time is an absolute time, an integer representing the number of seconds since `1900-01-01T00:00:00Z` (that is midnight on January 1st, 1900 in the UTC).
6-
- Decoded time is a tuple of 9 values, that together represent a specific calendar time: seconds, minutes, hour, day-of-month, year, day-of-week, DST flag, time zone.
6+
- Decoded time is a tuple of 9 values, that together represent a specific calendar time: seconds, minutes, hour, day-of-month, month, year, day-of-week, DST flag, time zone.
77
(Discussed in detail below.)
88
- Internal time is an positive integer in implementation defined 'internal time units' which can be used for measurements of run time.
99

@@ -27,7 +27,7 @@ A decoded time is a set of values:
2727
- *seconds*: an integer between 0 and 59
2828
- *minutes*: an integer between 0 and 59
2929
- *hour*: an integer between 0 and 23
30-
- *date*: an integer between 1 and 31 (upper limit actually depends upon month and year obviously)
30+
- *day of month*: an integer between 1 and 31 (upper limit actually depends upon month and year obviously)
3131
- *month*: an integer between 1 and 12
3232
- *year*: an integer indicating the year.
3333
- *day of week*: an integer between 0 and 6. 0 means Monday, 1 means Tuesday etc. ... 6 means Sunday.

0 commit comments

Comments
 (0)