aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorMichael Lavrisha <michael.lavrisha@gmail.com>2011-07-24 14:34:34 -0600
committerMichael Lavrisha <michael.lavrisha@gmail.com>2011-07-24 14:34:34 -0600
commit06b59e39a120efe173c2f2655b7f822fbf0107f0 (patch)
treef10c86ccab0d1df14c810c42d796d281d43a9d50 /railties
parent941fae2cbb070caf0abe902dd7b2ae091b240e72 (diff)
downloadrails-06b59e39a120efe173c2f2655b7f822fbf0107f0.tar.gz
rails-06b59e39a120efe173c2f2655b7f822fbf0107f0.tar.bz2
rails-06b59e39a120efe173c2f2655b7f822fbf0107f0.zip
Rewrite apart of the REST section to be in the present tense
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/getting_started.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 1bdfd79476..6eaa47e04e 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -127,11 +127,11 @@ Rest stands for Representational State Transfer and is the foundation of the RES
* Using resource identifiers such as URLs to represent resources.
* Transferring representations of the state of that resource between system components.
-For example, to a Rails application a request such as this:
+For example, the following HTTP request:
<tt>DELETE /photos/17</tt>
-would be understood to refer to a photo resource with the ID of 17, and to indicate a desired action - deleting that resource. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from many of the RESTful complexities and browser quirks.
+refers to a photo resource with an ID of 17 and indicates an action to be taken upon it: deletion. REST is a natural style for the architecture of web applications, and Rails hooks into this shielding you from many of the RESTful complexities and browser quirks.
If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's thesis: