aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app
diff options
context:
space:
mode:
authorLes Nightingill <codehacker@comcast.net>2012-04-25 09:40:43 -0700
committerLes Nightingill <codehacker@comcast.net>2012-04-25 09:40:43 -0700
commita2fac64fb91c426f64b687270117e956fb77cff6 (patch)
treeb2b3344ab0d9fa66f993f9136eba3c4542f22b39 /guides/code/getting_started/app
parent047600157a1a7d2ec3e3afa7c90e539f94b37aa5 (diff)
parent7f04235e523253bcf0a7d58d9f9bb61313a83337 (diff)
downloadrails-a2fac64fb91c426f64b687270117e956fb77cff6.tar.gz
rails-a2fac64fb91c426f64b687270117e956fb77cff6.tar.bz2
rails-a2fac64fb91c426f64b687270117e956fb77cff6.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'guides/code/getting_started/app')
-rw-r--r--guides/code/getting_started/app/views/posts/_form.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/code/getting_started/app/views/posts/_form.html.erb b/guides/code/getting_started/app/views/posts/_form.html.erb
index 46ec257b91..b35ea2f237 100644
--- a/guides/code/getting_started/app/views/posts/_form.html.erb
+++ b/guides/code/getting_started/app/views/posts/_form.html.erb
@@ -1,4 +1,4 @@
-<%= form_for :post, :url => { :action => :update, :id => @post.id }, :method => :put do |f| %>
+<%= form_for @post do |f| %>
<% if @post.errors.any? %>
<div id="errorExplanation">
<h2><%= pluralize(@post.errors.count, "error") %> prohibited this post from being saved:</h2>