aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-05-29 13:17:28 -0700
committerZachary Scott <e@zzak.io>2014-05-29 13:17:28 -0700
commit214423f40171bf7d3165d70507ab17803b2fbf07 (patch)
tree251a97aafff763f2b5c2aec09611067cae39d4c4 /guides
parent52871ea05c11b572c199c4bada877e95252b32dc (diff)
downloadrails-214423f40171bf7d3165d70507ab17803b2fbf07.tar.gz
rails-214423f40171bf7d3165d70507ab17803b2fbf07.tar.bz2
rails-214423f40171bf7d3165d70507ab17803b2fbf07.zip
Add missing period from 4b802bc [ci skip]
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 eba4b3f52b..2d7c06837b 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