Skip to content

Commit d7aca1e

Browse files
authored
Merge pull request rails#53916 from lucthev/lt/reloading-typo
Fix typo in autoloading guide [ci skip]
2 parents dcbef4e + 86ca11e commit d7aca1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/autoloading_and_reloading_constants.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ config.autoload_lib(ignore: %w(assets tasks))
116116

117117
Why? While `assets` and `tasks` share the `lib` directory with regular Ruby code, their contents are not meant to be reloaded or eager loaded.
118118

119-
The `ignore` list should have all `lib` subdirectories that do not contain files with `.rb` extension, or that should not be reloadaded or eager loaded. For example,
119+
The `ignore` list should have all `lib` subdirectories that do not contain files with `.rb` extension, or that should not be reloaded or eager loaded. For example,
120120

121121
```ruby
122122
config.autoload_lib(ignore: %w(assets tasks templates generators middleware))

0 commit comments

Comments
 (0)