From c517a708d5af38208709f18f91e2a6669ce657ed Mon Sep 17 00:00:00 2001 From: brchristian Date: Sun, 16 Aug 2020 16:53:15 -0700 Subject: [PATCH] Fix typo in documentation of stripe_object.rb (#940) --- lib/stripe/stripe_object.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stripe/stripe_object.rb b/lib/stripe/stripe_object.rb index dc3327802..01e564952 100644 --- a/lib/stripe/stripe_object.rb +++ b/lib/stripe/stripe_object.rb @@ -375,7 +375,7 @@ class << self; self; end begin super rescue NoMethodError => e - # If we notice the accessed name if our set of transient values we can + # If we notice the accessed name of our set of transient values we can # give the user a slightly more helpful error message. If not, just # raise right away. raise unless @transient_values.include?(name)