aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-05-29 13:16:48 -0700
committerZachary Scott <e@zzak.io>2014-05-29 13:16:48 -0700
commit52871ea05c11b572c199c4bada877e95252b32dc (patch)
tree071b21c5d809731108d9f6c4f6b901b3b8e424e5
parentf14164c573b81fcff382950d924481ea7b4a9b10 (diff)
parent4b802bc4f1a3bd35b15d80d1d62280d96114aef5 (diff)
downloadrails-52871ea05c11b572c199c4bada877e95252b32dc.tar.gz
rails-52871ea05c11b572c199c4bada877e95252b32dc.tar.bz2
rails-52871ea05c11b572c199c4bada877e95252b32dc.zip
Merge pull request #15411 from nathany/patch-1
Fix broken link in Rails 3.0 release_notes [ci skip]
-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