From bf85a5e67e360a3b940e780c09e9a6a1dd69d11c Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Fri, 14 Jun 2024 10:56:33 -0400 Subject: [PATCH] Remove extraneous apostrophe Co-authored-by: Billy Lanchantin --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92f6932..58375cb 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Operators like `<` do _structural_ comparison (instead of _semantic_ comparison) > ``` In other words, although `~D[2017-03-31] > ~D[2017-04-01]` is valid code, it does _not_ tell you if `~D[2017-03-31]` is a later date than `~D[2017-04-01]` as you might expect. -Instead, you'd' use `Date.compare/2`. +Instead, you'd use `Date.compare/2`. ### Chained vs. Nested Comparisons