diff options
author | Thomas McDonald <themcman1@googlemail.com> | 2010-10-06 22:11:03 +0100 |
---|---|---|
committer | Thomas McDonald <themcman1@googlemail.com> | 2010-10-06 22:11:03 +0100 |
commit | 3ca6988b782f7ae9da736b090fbf1edd8bc02fcb (patch) | |
tree | 9b714bf0fd0fa8ccbec8dab17cd746ad7eb4aee7 /railties | |
parent | b1047888fb4ddf9ba2cbdd4cd596ad4f1aca8645 (diff) | |
download | rails-3ca6988b782f7ae9da736b090fbf1edd8bc02fcb.tar.gz rails-3ca6988b782f7ae9da736b090fbf1edd8bc02fcb.tar.bz2 rails-3ca6988b782f7ae9da736b090fbf1edd8bc02fcb.zip |
Fixed typo in engine documentation
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/engine.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb index 0620b8608e..5e2bdb7340 100644 --- a/railties/lib/rails/engine.rb +++ b/railties/lib/rails/engine.rb @@ -17,7 +17,7 @@ module Rails # In Rails versions before to 3.0, your gems automatically behaved as Engine, however # this coupled Rails to Rubygems. Since Rails 3.0, if you want a gem to automatically # behave as Engine, you have to specify an Engine for it somewhere inside your plugin - # lib folder (similar with how we spceify a Railtie): + # lib folder (similar to how we specify a Railtie): # # # lib/my_engine.rb # module MyEngine |