From eb1a9ddd914158eb41cbb74611732652ff7f0952 Mon Sep 17 00:00:00 2001 From: Shozo Hatta Date: Sun, 17 Oct 2021 12:42:36 +0900 Subject: [PATCH] Fix typo in upgrading_ruby_on_rails.md [ci-skip] --- guides/source/upgrading_ruby_on_rails.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 9008057faa..0b36a8831c 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -102,7 +102,7 @@ The private API of `ActiveSupport::Dependencies` has been deleted. That includes A few of highlights: -* If you used `ActiveSupport::Dependencies.constantize` or ``ActiveSupport::Dependencies.safe_constantize`, just change them to `String#constantize` or `String#safe_constantize`. +* If you used `ActiveSupport::Dependencies.constantize` or `ActiveSupport::Dependencies.safe_constantize`, just change them to `String#constantize` or `String#safe_constantize`. ```ruby ActiveSupport::Dependencies.constantize("User") # NO LONGER POSSIBLE