From 55ab5d51fb28b51a2f1c61fc7bdd81f334c5b35f Mon Sep 17 00:00:00 2001 From: Colin Knox Date: Mon, 27 Nov 2023 12:53:26 -0600 Subject: [PATCH] [ci skip] Fix small string typo in docs for ActiveRecord::AttributeMethods::Dirty --- activerecord/lib/active_record/attribute_methods/dirty.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/attribute_methods/dirty.rb b/activerecord/lib/active_record/attribute_methods/dirty.rb index 76bec494e0..40b58606eb 100644 --- a/activerecord/lib/active_record/attribute_methods/dirty.rb +++ b/activerecord/lib/active_record/attribute_methods/dirty.rb @@ -14,7 +14,7 @@ module AttributeMethods # class Person < ActiveRecord::Base # end # - # person = Person.create(name: "Alisson") + # person = Person.create(name: "Allison") # person.changed? # => false # # Change the name: