aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorNathan Youngman <git@nathany.com>2014-05-29 14:10:21 -0600
committerNathan Youngman <git@nathany.com>2014-05-29 14:10:21 -0600
commit4b802bc4f1a3bd35b15d80d1d62280d96114aef5 (patch)
tree071b21c5d809731108d9f6c4f6b901b3b8e424e5 /guides
parentf14164c573b81fcff382950d924481ea7b4a9b10 (diff)
downloadrails-4b802bc4f1a3bd35b15d80d1d62280d96114aef5.tar.gz
rails-4b802bc4f1a3bd35b15d80d1d62280d96114aef5.tar.bz2
rails-4b802bc4f1a3bd35b15d80d1d62280d96114aef5.zip
Fix broken link in Rails 3.0 release_notes
Diffstat (limited to 'guides')
-rw-r--r--guides/source/3_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/3_0_release_notes.md b/guides/source/3_0_release_notes.md
index db34fa401f..eba4b3f52b 100644
--- a/guides/source/3_0_release_notes.md
+++ b/guides/source/3_0_release_notes.md
@@ -308,7 +308,7 @@ More Information:
Major re-write was done in the Action View helpers, implementing Unobtrusive JavaScript (UJS) hooks and removing the old inline AJAX commands. This enables Rails to use any compliant UJS driver to implement the UJS hooks in the helpers.
-What this means is that all previous `remote_<method>` helpers have been removed from Rails core and put into the [Prototype Legacy Helper](http://github.com/rails/prototype_legacy_helper.) To get UJS hooks into your HTML, you now pass `:remote => true` instead. For example:
+What this means is that all previous `remote_<method>` helpers have been removed from Rails core and put into the [Prototype Legacy Helper](http://github.com/rails/prototype_legacy_helper) To get UJS hooks into your HTML, you now pass `:remote => true` instead. For example:
```ruby
form_for @post, :remote => true