Use double quotes here, as per Rails own guidelines

This commit is contained in:
Xavier Noria 2023-01-11 09:08:48 +01:00
parent 5ab1d1954b
commit f9019160e3

@ -331,7 +331,7 @@ In order to play well with reloadable application code, the engine instead needs
```ruby
# config/initializers/my_engine.rb
MyEngine.configure do |config|
config.user_model = 'User' # OK
config.user_model = "User" # OK
end
```