diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-12-15 16:16:49 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-12-15 16:16:49 -0200 |
commit | 72a815c3fdd288c1e94953712b7540b582adfab7 (patch) | |
tree | 5234a12e04f41d4ae8adef3e9c5815db3f84dde0 | |
parent | 2ed2be1ccc0893b7b16ed16004b20bb992a06526 (diff) | |
parent | 5fc50c20874d4ae5310dc54a3727d70a1ca412b1 (diff) | |
download | rails-72a815c3fdd288c1e94953712b7540b582adfab7.tar.gz rails-72a815c3fdd288c1e94953712b7540b582adfab7.tar.bz2 rails-72a815c3fdd288c1e94953712b7540b582adfab7.zip |
Merge pull request #18038 from seuros/typofix
fix a typo [ci skip]
-rw-r--r-- | guides/source/constant_autoloading_and_reloading.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/constant_autoloading_and_reloading.md b/guides/source/constant_autoloading_and_reloading.md index 5cd62c22a8..9c0f9f58fc 100644 --- a/guides/source/constant_autoloading_and_reloading.md +++ b/guides/source/constant_autoloading_and_reloading.md @@ -539,7 +539,7 @@ role.rb modulus some additional directory lookups we are going to cover soon. -INFO. 'Constant::Name'.underscore gives the relative path without extension of +INFO. `'Constant::Name'.underscore` gives the relative path without extension of the file name where `Constant::Name` is expected to be defined. Let's see how does Rails autoload the `Post` constant in the `PostsController` |