diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2019-04-11 11:57:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-11 11:57:08 -0400 |
commit | d2767a0ff716e771e5a7ac288da4522a2aeb6506 (patch) | |
tree | 3d1ac3c0e97e80d36d3292b3f86522744e0e3a4b /guides/source | |
parent | 9ba394568cb38586cae134265d2d81c809f4c8a6 (diff) | |
parent | d7c1ecf54038034f95c9a9ad09ea2ad646b6a9ea (diff) | |
download | rails-d2767a0ff716e771e5a7ac288da4522a2aeb6506.tar.gz rails-d2767a0ff716e771e5a7ac288da4522a2aeb6506.tar.bz2 rails-d2767a0ff716e771e5a7ac288da4522a2aeb6506.zip |
Merge pull request #35945 from soartec-lab/update_guide_engine_sample_code_block
Code is enclosed by code block [skip ci]
Diffstat (limited to 'guides/source')
-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' } +``` |