1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #104 from udaykadaboina/typofix

fixed a typo [ci skip]
This commit is contained in:
Francesco Rodríguez 2012-06-23 14:22:37 -07:00
commit 956c8e569a

View file

@ -906,7 +906,7 @@ end
</ruby>
The new method, +update_attributes+, is used when you want to update a record
that already exists, and it accepts an hash containing the attributes
that already exists, and it accepts a hash containing the attributes
that you want to update. As before, if there was an error updating the
post we want to show the form back to the user.
@ -1191,7 +1191,7 @@ delete "posts/:id" => "posts#destroy"
That's a lot to type for covering a single *resource*. Fortunately,
Rails provides a +resources+ method which can be used to declare a
standard REST resource. Here's how +config/routes/rb+ looks after the
standard REST resource. Here's how +config/routes.rb+ looks after the
cleanup:
<ruby>