Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jaor committed Jun 28, 2018
1 parent 9868648 commit 1ed34b9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/quick-reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ Functions taking a number representing the *epoch*, i.e., the number of
(epoch-year <n>) ;; number
(epoch-month <n>) ;; number
(epoch-week <n>) ;; number
(epoch-day <n>) ;; number
(epoch-weekday <n>) ;; number
(epoch-hour <n>) ;; number
Expand Down
7 changes: 6 additions & 1 deletion docs/user-manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ Arithmetical operators
----------------------

The usual arithmetical operators ``+``, ``-``, ``*`` and
``/' taking any number of arguments (or zero, for``\ +\ ``and``\ \*\`)
``/`` taking any number of arguments (or zero, for``\ +\ ``and``\ \*\`)
are available. Of course their operands must evaluate to a numeric
value; otherwise, the result will be nil, representing a missing value.

Expand Down Expand Up @@ -929,6 +929,7 @@ functions to expand an epoch to its date-time components:

(epoch-year <n>)
(epoch-month <n>)
(epoch-week <n>)
(epoch-day <n>)
(epoch-weekday <n>)
(epoch-hour <n>)
Expand All @@ -955,6 +956,10 @@ prior to 1970.
The day of the week (given by ``epoch-weekday``) is a number from 1
(Monday) to 7 (Sunday).

The week within the year, given by ``epoch-week``, is a number between
1 and 52. Note that it is not included in the oputput of
``epoch-fields``.

Datetime arithmetic
~~~~~~~~~~~~~~~~~~~

Expand Down

0 comments on commit 1ed34b9

Please sign in to comment.