diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-06 08:27:11 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-06 08:27:11 +0000 |
commit | 93ec99c2462135cfddeed07f7c212787eebd4b15 (patch) | |
tree | 4df24ded750751ccab0ff30e71f6daf548ae4edf /actionpack/README | |
parent | 72104faa5891a7d2a6b598c5a5db036a2b06b74a (diff) | |
download | rails-93ec99c2462135cfddeed07f7c212787eebd4b15.tar.gz rails-93ec99c2462135cfddeed07f7c212787eebd4b15.tar.bz2 rails-93ec99c2462135cfddeed07f7c212787eebd4b15.zip |
Partly tuned docs for release (AP)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1728 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/README')
-rwxr-xr-x | actionpack/README | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/README b/actionpack/README index df2890ffb1..8590af9f0b 100755 --- a/actionpack/README +++ b/actionpack/README @@ -43,7 +43,7 @@ A short rundown of the major features: @customer.attributes = @params["customer"] @customer.save ? redirect_to(:action => "display") : - render("customer/edit") + render(:action => "edit") end private @@ -168,13 +168,13 @@ A short rundown of the major features: {Learn more}[link:classes/ActionController/Base.html] -* JavaScript and Ajax integration. +* Javascript and Ajax integration. link_to_function "Greeting", "alert('Hello world!')" link_to_remote "Delete this post", :update => "posts", :url => { :action => "destroy", :id => post.id } - {Learn more}[link:classes/ActionView/Helpers/JavaScriptHelper.html] + {Learn more}[link:classes/ActionView/Helpers/JavascriptHelper.html] * Pagination for navigating lists of results. |