diff options
author | Xavier Noria <fxn@hashref.com> | 2011-07-25 15:10:13 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-07-25 15:10:13 -0700 |
commit | cb02d10df2b892925bfa8b2a9b01223e44f2acb4 (patch) | |
tree | 1334d65b1681543da88735f8b5f9582353ea69ff /railties/guides/source/getting_started.textile | |
parent | 703d0e05c0a57ec032cd6966ff82e757415bcc50 (diff) | |
download | rails-cb02d10df2b892925bfa8b2a9b01223e44f2acb4.tar.gz rails-cb02d10df2b892925bfa8b2a9b01223e44f2acb4.tar.bz2 rails-cb02d10df2b892925bfa8b2a9b01223e44f2acb4.zip |
sync the getting started guide with master
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 0b89021392..6c8aa668b2 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -197,9 +197,10 @@ For example, the following HTTP request: <tt>DELETE /photos/17</tt> -refers to a photo resource with an ID of 17 and indicates an action to be taken -upon it: deletion. REST is a natural web application architecture which Rails -abstracts, shielding you from RESTful complexities and browser quirks. +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. If you'd like more details on REST as an architectural style, these resources are more approachable than Fielding's thesis: |