@@ -9,12 +9,12 @@ description: >-
99## Date and time representations  
1010
1111AQL offers functionality to work with dates, but it does not have a special data type
12- for dates (neither does JSON, which is usually used as format to ship data into and
12+ for dates (neither does JSON, which is usually used as a  format to ship data into and
1313out of ArangoDB). Instead, dates in AQL are represented by either numbers or strings.
1414
1515All date function operations are done in the * Unix time*  system. Unix time counts
16- all non leap seconds beginning with January 1st 1970 00:00:00.000 UTC, also know  as
17- the Unix epoch. A point in time is called timestamp. A timestamp has the same value
16+ all non leap seconds beginning with January 1st 1970 00:00:00.000 UTC, also known  as
17+ the Unix epoch. A point in time is called a  timestamp. A timestamp has the same value
1818at every point on earth. The date functions use millisecond precision for timestamps.
1919
2020Time unit definitions:
@@ -148,7 +148,7 @@ The date time string always uses UTC / Zulu time, indicated by the `Z` at its en
148148
149149` DATE_ISO8601(year, month, day, hour, minute, second, millisecond) → dateString ` 
150150
151- Return a  ISO 8601 date time string from ` date ` , but allows to specify the individual
151+ Return an  ISO 8601 date time string from ` date ` , but allows you  to specify the individual
152152date components separately. All parameters after ` day `  are optional.
153153
154154-  ** year**  (number): typically in the range 0..9999, e.g. ` 2017 ` 
@@ -174,7 +174,7 @@ To convert the return value to seconds, divide it by 1000.
174174
175175` DATE_TIMESTAMP(year, month, day, hour, minute, second, millisecond) → timestamp ` 
176176
177- Create a timestamp value, but allows to specify the individual date components
177+ Create a timestamp value, but allows you  to specify the individual date components
178178separately. All parameters after ` day `  are optional.
179179
180180-  ** year**  (number): typically in the range 0..9999, e.g. ` 2017 ` 
@@ -779,7 +779,7 @@ RETURN DATE_DAYS_IN_MONTH("2020-02-01")
779779--- 
780780name: datedysmn4 
781781description: | 
782-  Determine the number of days in February in a a  non-leap year using a date time string: 
782+  Determine the number of days in February in a non-leap year using a date time string: 
783783--- 
784784RETURN DATE_DAYS_IN_MONTH("2021-02-01") 
785785``` 
0 commit comments