diff options
-rw-r--r-- | guides/source/engines.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md index a36944d980..068f1efae3 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -1528,4 +1528,6 @@ These are the available configuration hooks. They do not hook into any particula ### Example -`config.before_configuration { puts 'I am called before any initializers' }` +```ruby +config.before_configuration { puts 'I am called before any initializers' } +``` |