aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/engines.md
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-09-21 23:54:17 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-09-21 23:54:17 +0530
commit271d1e7d8ce81355854cbbdc4386aea65ca79195 (patch)
treefcfd08ea982a534733712a3037efb1e226c12631 /guides/source/engines.md
parent25c3c89e97ebf61debc937687ff536c8316792ac (diff)
downloadrails-271d1e7d8ce81355854cbbdc4386aea65ca79195.tar.gz
rails-271d1e7d8ce81355854cbbdc4386aea65ca79195.tar.bz2
rails-271d1e7d8ce81355854cbbdc4386aea65ca79195.zip
Fix typos and links in engines guide [ci skip]
Diffstat (limited to 'guides/source/engines.md')
-rw-r--r--guides/source/engines.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index be8c26486b..6d2d8ca409 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -1,4 +1,4 @@
-etting Started with Engines
+Getting Started with Engines
============================
In this guide you will learn about engines and how they can be used to provide additional functionality to their host applications through a clean and very easy-to-use interface. You will learn the following things in this guide:
@@ -710,10 +710,9 @@ class Post < ActiveRecord::Base
end
```
-
#### Implementing Decorator Pattern Using ActiveSupport::Concern
-Using `Class#class_eval` is great for simple adjustments, but for more complex class modifications, you might want to consider using `ActiveSupport::Concern`. [[**ActiveSupport::Concern**](http://edgeapi.rubyonrails.org/classes/ActiveSupport/Concern.html]) helps manage load order of interlinked dependencies at run time allowing you to significantly modularize your code.
+Using `Class#class_eval` is great for simple adjustments, but for more complex class modifications, you might want to consider using [`ActiveSupport::Concern`](http://edgeapi.rubyonrails.org/classes/ActiveSupport/Concern.html) helps manage load order of interlinked dependencies at run time allowing you to significantly modularize your code.
**Adding** `Post#time_since_created`<br/>
**Overriding** `Post#summary`