mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
This code was not deprecated. What was deprecated is the following:
form_for(:foo, @foo)
Which now should be rewritten as:
form_for(@foo, :as => :foo)
The following format is valid:
form_for(:foo)
This reverts commit be797750e6.