diff options
author | Ellis Berner <eberner@gmail.com> | 2012-08-12 11:26:56 -0700 |
---|---|---|
committer | Ellis Berner <eberner@gmail.com> | 2012-08-12 11:26:56 -0700 |
commit | f7f70841b823a945f083735f72fcb18fe929b4db (patch) | |
tree | 4aa51303ab7e64f7a88d3a183f27947d4c591595 | |
parent | 15184d8b610438d34418342c002b53f441ec647f (diff) | |
download | rails-f7f70841b823a945f083735f72fcb18fe929b4db.tar.gz rails-f7f70841b823a945f083735f72fcb18fe929b4db.tar.bz2 rails-f7f70841b823a945f083735f72fcb18fe929b4db.zip |
Missing closing tag
-rw-r--r-- | actionpack/lib/action_controller/metal/force_ssl.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/force_ssl.rb b/actionpack/lib/action_controller/metal/force_ssl.rb index 77d799a38a..e905a3cf1d 100644 --- a/actionpack/lib/action_controller/metal/force_ssl.rb +++ b/actionpack/lib/action_controller/metal/force_ssl.rb @@ -32,7 +32,7 @@ module ActionController # ==== Options # * <tt>host</tt> - Redirect to a different host name # * <tt>only</tt> - The callback should be run only for this action - # * <tt>except<tt> - The callback should be run for all actions except this action + # * <tt>except</tt> - The callback should be run for all actions except this action # * <tt>if</tt> - A symbol naming an instance method or a proc; the callback # will be called only when it returns a true value. # * <tt>unless</tt> - A symbol naming an instance method or a proc; the callback |