aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2008-09-27 20:41:43 -0500
committerMike Gunderloy <MikeG1@larkfarm.com>2008-09-27 20:41:43 -0500
commit106d1475461d8553ceadc96c8e6dda13e054ac9b (patch)
tree88f1e2585ccb2315eed21a31f1d584467c2ab2c1 /actionpack
parent444fb3ec692788de9c69d4ed722479e55541a546 (diff)
downloadrails-106d1475461d8553ceadc96c8e6dda13e054ac9b.tar.gz
rails-106d1475461d8553ceadc96c8e6dda13e054ac9b.tar.bz2
rails-106d1475461d8553ceadc96c8e6dda13e054ac9b.zip
Change erroneous "unless" to "if" in documentation.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index fe168788e2..91f531f12c 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -252,7 +252,7 @@ module ActionController #:nodoc:
#
# def do_something
# redirect_to(:action => "elsewhere") and return if monkeys.nil?
- # render :action => "overthere" # won't be called unless monkeys is nil
+ # render :action => "overthere" # won't be called if monkeys is nil
# end
#
class Base