From 7ed65a0af1a4fb7b242f38d50cd1a54c9df5cfda Mon Sep 17 00:00:00 2001 From: Jesse Gumm Date: Wed, 13 Apr 2016 19:50:26 -0500 Subject: [PATCH] Compress phrasing a bit in relative readme --- README.markdown | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.markdown b/README.markdown index e1522af..f249ce8 100644 --- a/README.markdown +++ b/README.markdown @@ -473,16 +473,12 @@ Doing this allows you to parse relative time strings of the following formats: + "+2 years" And doing so allows you to construct slightly more readable comparison calls -for sometimes common comparisons. For example: +for sometimes common comparisons. For example, the following two calls are identical: ```erlang -> qdate:between("-15 minutes", Date, "+15 minutes"). -``` +qdate:between("-15 minutes", Date, "+15 minutes"). -Is equivilant to: - -```erlang -> qdate:between(qdate:add_minutes(-15), Date, qdate:add_minutes(15)). +qdate:between(qdate:add_minutes(-15), Date, qdate:add_minutes(15)). ``` ### Registering Custom Formats