From 2e8fed156d9d50555388935207abc8e11375121e Mon Sep 17 00:00:00 2001 From: Juhani Haverinen Date: Thu, 25 Aug 2016 23:17:38 +0300 Subject: [PATCH] =?UTF-8?q?Fix=20a=20typo=20in=20README.md=20(exp=E2=86=92?= =?UTF-8?q?expr)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index afc27ca..a6dac4f 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ Dates are given as year-month-day, weeks as year-week. Weekdays use the three-le While `date` checks that the date is in a given range (both ends inclusive), `week` and `weekday` check if the date is in a given week or given weekday. Thus, `(weekday mon wed)` only checks if the weekday is monday or wednesday, not if it's tuesday. - (and [exp1 expr2 expr3 …]) - (or [exp1 expr2 expr3 …]) - (not [exp1 expr2 expr3 …]) + (and [expr1 expr2 expr3 …]) + (or [expr1 expr2 expr3 …]) + (not [expr1 expr2 expr3 …]) (if condition expr) `and`, `or`, and `not` all take a variable amount of parameters. `and` checks that all are true, `or` that at least one is true, and `not` that none are true. All of these can be run with zero parameters, in which case `and` and `not` return true and `or` returns false.