diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-09-27 20:41:43 -0500 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2008-09-27 20:41:43 -0500 |
commit | 106d1475461d8553ceadc96c8e6dda13e054ac9b (patch) | |
tree | 88f1e2585ccb2315eed21a31f1d584467c2ab2c1 | |
parent | 444fb3ec692788de9c69d4ed722479e55541a546 (diff) | |
download | rails-106d1475461d8553ceadc96c8e6dda13e054ac9b.tar.gz rails-106d1475461d8553ceadc96c8e6dda13e054ac9b.tar.bz2 rails-106d1475461d8553ceadc96c8e6dda13e054ac9b.zip |
Change erroneous "unless" to "if" in documentation.
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 2 |
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 |