aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2012-05-14 06:55:45 +1000
committerRyan Bigg <radarlistener@gmail.com>2012-05-14 06:55:45 +1000
commit96fb77fe8000569ccc6b5bfd91668719bf92fa3d (patch)
tree658d24d0de25f80f17f073af5d1a9cac0b266797 /guides
parent9e4fd33ae8860388cff54af44ee07f19a09ba9f6 (diff)
downloadrails-96fb77fe8000569ccc6b5bfd91668719bf92fa3d.tar.gz
rails-96fb77fe8000569ccc6b5bfd91668719bf92fa3d.tar.bz2
rails-96fb77fe8000569ccc6b5bfd91668719bf92fa3d.zip
Separate CR out in CRUD explanation, explain each letter one at a time
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile
index a689cf1c3b..540084eb15 100644
--- a/guides/source/getting_started.textile
+++ b/guides/source/getting_started.textile
@@ -220,7 +220,7 @@ Now that you've seen how to create a controller, an action and a view, let's cre
In the Blog application, you will now create a new _resource_. A resource is the term used for a collection of similar objects, such as posts, people or animals. You can create, read, update and destroy items for a resource and these operations are referred to as _CRUD_ operations.
-In the next section, you will add the ability to create new posts in your application and be able to view them. This is the "CR" from CRUD. The form for doing this will look like this:
+In the next section, you will add the ability to create new posts in your application and be able to view them. This is the "C" and the "R" from CRUD: creation and reading. The form for doing this will look like this:
!images/getting_started/new_post.png(The new post form)!