aboutsummaryrefslogtreecommitdiffstats
path: root/README.rdoc
diff options
context:
space:
mode:
authorHendy Tanata <htanata@gmail.com>2011-07-27 17:30:35 +0700
committerXavier Noria <fxn@hashref.com>2011-08-04 16:40:24 -0700
commita45c2d59343a27bdef51118f10faf180ee4ca3d1 (patch)
tree99692bb34d73bc4fe04d061eb44766ab9245b442 /README.rdoc
parent2dc6cca773380e55d2afe0d3de34fa7c68f9f7d7 (diff)
downloadrails-a45c2d59343a27bdef51118f10faf180ee4ca3d1.tar.gz
rails-a45c2d59343a27bdef51118f10faf180ee4ca3d1.tar.bz2
rails-a45c2d59343a27bdef51118f10faf180ee4ca3d1.zip
Fix two spaces between sententes on README.rdoc.
Diffstat (limited to 'README.rdoc')
-rw-r--r--README.rdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.rdoc b/README.rdoc
index bca2126559..f87d6e9edb 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -3,11 +3,11 @@
Rails is a web-application framework that includes everything needed to create
database-backed web applications according to the {Model-View-Controller (MVC)}[http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller] pattern.
-Understanding the MVC pattern is key to understanding Rails. MVC divides your application
+Understanding the MVC pattern is key to understanding Rails. MVC divides your application
into three layers, each with a specific responsibility.
The View layer is composed of "templates" that are responsible for providing
-appropriate representations of your application's resources. Templates
+appropriate representations of your application's resources. Templates
can come in a variety of formats, but most view templates are HTML with embedded Ruby
code (.erb files).
@@ -21,7 +21,7 @@ provided by the ActiveModel module. You can read more about Active Record in its
{README}[link:blob/master/activerecord/README.rdoc].
The Controller layer is responsible for handling incoming HTTP requests and providing a
-suitable response. Usually this means returning HTML, but Rails controllers can also
+suitable response. Usually this means returning HTML, but Rails controllers can also
generate XML, JSON, PDFs, mobile-specific views, and more. Controllers manipulate models
and render view templates in order to generate the appropriate HTTP response.