From 14935f2fbe039c2ec9acd0e53b11f9d022f31fcb Mon Sep 17 00:00:00 2001 From: Takumasa Ochi Date: Wed, 6 Sep 2023 23:58:39 +0900 Subject: [PATCH] Remove an example which contradicts other guidelines --- README.adoc | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.adoc b/README.adoc index 49b3fe1..3b06f76 100644 --- a/README.adoc +++ b/README.adoc @@ -1866,11 +1866,9 @@ Use an instance of `ActiveSupport::Duration` as a receiver to calculate relative ---- # bad - It's confusing to read created_at.since(1.minute) -expiration_date.ago(3.days) # good 1.minute.since(created_at) -3.days.ago(expiration_date) ---- == Bundler