aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-08-19 00:34:19 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-08-19 00:34:19 -0300
commit6846d9146bcbad58b132695907b417592a0f14e0 (patch)
treeacb0d19de15d7e9b18cd693279fee851edac8ef9 /guides/source
parent726001485005629b155240fe85f8a011f15d6b84 (diff)
downloadrails-6846d9146bcbad58b132695907b417592a0f14e0.tar.gz
rails-6846d9146bcbad58b132695907b417592a0f14e0.tar.bz2
rails-6846d9146bcbad58b132695907b417592a0f14e0.zip
Fix typo [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 60b95fa668..7a125fd341 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -104,7 +104,7 @@ At the root of this brand new engine's directory lives a `blorgh.gemspec` file.
gem 'blorgh', path: "vendor/engines/blorgh"
```
-Don't foget to ` bundle install` as usual. By specifying it as a gem within the `Gemfile`, Bundler will load it as such, parsing this `blorgh.gemspec` file and requiring a file within the `lib` directory called `lib/blorgh.rb`. This file requires the `blorgh/engine.rb` file (located at `lib/blorgh/engine.rb`) and defines a base module called `Blorgh`.
+Don't forget to run `bundle install` as usual. By specifying it as a gem within the `Gemfile`, Bundler will load it as such, parsing this `blorgh.gemspec` file and requiring a file within the `lib` directory called `lib/blorgh.rb`. This file requires the `blorgh/engine.rb` file (located at `lib/blorgh/engine.rb`) and defines a base module called `Blorgh`.
```ruby
require "blorgh/engine"