Skip to content

Commit 35e3ff3

Browse files
authored
Fix minor typo in ActiveSupport::ProxyObject deprecation logs (rails#51688)
1 parent cc7f0b0 commit 35e3ff3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

activesupport/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
*heka1024*
1515

16-
* Deprecate `ActiveSupport::ProxyObject` in favor of Ruby's buildin `BasicObject`
16+
* Deprecate `ActiveSupport::ProxyObject` in favor of Ruby's built-in `BasicObject`
1717
1818
*Earlopain*
1919

activesupport/lib/active_support/proxy_object.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def raise(*args)
1313
def self.inherited(_subclass)
1414
::ActiveSupport.deprecator.warn(<<~MSG)
1515
ActiveSupport::ProxyObject is deprecated and will be removed in Rails 7.3.
16-
Use Ruby's buildin BasicObject instead.
16+
Use Ruby's built-in BasicObject instead.
1717
MSG
1818
end
1919
end

0 commit comments

Comments
 (0)