From 106d1475461d8553ceadc96c8e6dda13e054ac9b Mon Sep 17 00:00:00 2001 From: Mike Gunderloy Date: Sat, 27 Sep 2008 20:41:43 -0500 Subject: Change erroneous "unless" to "if" in documentation. --- actionpack/lib/action_controller/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3