From 25c3eab0dcf09a45bcde905710da6a5f5e502c5c Mon Sep 17 00:00:00 2001 From: "T.J. Schuck" Date: Mon, 14 Dec 2020 20:43:17 -0500 Subject: [PATCH] Docs: fix code formatting [ci skip] --- activerecord/lib/active_record/signed_id.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/signed_id.rb b/activerecord/lib/active_record/signed_id.rb index 9f158e419b..f0f0094b74 100644 --- a/activerecord/lib/active_record/signed_id.rb +++ b/activerecord/lib/active_record/signed_id.rb @@ -20,7 +20,7 @@ module ActiveRecord # a certain time period. # # You set the time period that the signed id is valid for during generation, using the instance method - # +signed_id(expires_in: 15.minutes)+. If the time has elapsed before a signed find is attempted, + # signed_id(expires_in: 15.minutes). If the time has elapsed before a signed find is attempted, # the signed id will no longer be valid, and nil is returned. # # It's possible to further restrict the use of a signed id with a purpose. This helps when you have a