diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-09-21 23:54:17 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-09-21 23:54:17 +0530 |
commit | 271d1e7d8ce81355854cbbdc4386aea65ca79195 (patch) | |
tree | fcfd08ea982a534733712a3037efb1e226c12631 /guides/source | |
parent | 25c3c89e97ebf61debc937687ff536c8316792ac (diff) | |
download | rails-271d1e7d8ce81355854cbbdc4386aea65ca79195.tar.gz rails-271d1e7d8ce81355854cbbdc4386aea65ca79195.tar.bz2 rails-271d1e7d8ce81355854cbbdc4386aea65ca79195.zip |
Fix typos and links in engines guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/engines.md | 5 |
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` |