aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2014-12-15 23:24:09 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2014-12-15 23:24:09 +0530
commit1a2341038080155ca691a198f6497dba31bc8ce5 (patch)
tree903e19dc6fffec756fd69957b1ee6ac10c54d5ac /guides/source
parent84e38bbaccea1a5f1b74de46f75ae41d95835c80 (diff)
downloadrails-1a2341038080155ca691a198f6497dba31bc8ce5.tar.gz
rails-1a2341038080155ca691a198f6497dba31bc8ce5.tar.bz2
rails-1a2341038080155ca691a198f6497dba31bc8ce5.zip
fix a typo [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/constant_autoloading_and_reloading.md2
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 a426fd75b3..5cd62c22a8 100644
--- a/guides/source/constant_autoloading_and_reloading.md
+++ b/guides/source/constant_autoloading_and_reloading.md
@@ -346,7 +346,7 @@ derivation.
### Loading Mechanism
-Rails autoloads files with `Kerne#load` when `config.cache_classes` is false,
+Rails autoloads files with `Kernel#load` when `config.cache_classes` is false,
the default in development mode, and with `Kernel#require` otherwise, the
default in production mode.