diff options
author | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-15 19:22:00 +0200 |
---|---|---|
committer | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-11-15 19:22:00 +0200 |
commit | c1a661479ef75dac5afa2414413e1538ca72a19d (patch) | |
tree | 04fec73e505268bf9fa784faeb7e1987170590ad /guides/source | |
parent | bf63c4971d73e80739c9f2619a9fa0dfb2223435 (diff) | |
download | rails-c1a661479ef75dac5afa2414413e1538ca72a19d.tar.gz rails-c1a661479ef75dac5afa2414413e1538ca72a19d.tar.bz2 rails-c1a661479ef75dac5afa2414413e1538ca72a19d.zip |
Improve the starting sentence
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index 3ca2e9ea1b..1803f02d3a 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1540,7 +1540,7 @@ You can read more about the Rails Internationalization (I18n) API [here](i18n.ht Using Action View outside of Rails ---------------------------------- -Action View works well with Active Record, but it can also be used with other Ruby tools. We can demonstrate this by creating a small [Rack](http://rack.rubyforge.org/) application that includes Action View functionality. This may be useful, for example, if you'd like access to Action View's helpers in a Rack application. +Action View is a Rails component, but it can also be used without Rails. We can demonstrate this by creating a small [Rack](http://rack.rubyforge.org/) application that includes Action View functionality. This may be useful, for example, if you'd like access to Action View's helpers in a Rack application. Let's start by ensuring that you have the Action Pack and Rack gems installed: |