diff options
author | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-10-26 23:18:34 +0300 |
---|---|---|
committer | Agis Anastasopoulos <corestudiosinc@gmail.com> | 2012-10-26 23:18:34 +0300 |
commit | cc81af2fe438fd3e2c8f95dae8f757de0bab1b53 (patch) | |
tree | 5b8ff4982e18321d6a71ed9cc887a483393eaa73 | |
parent | 7a36dc736f6094322dc8bbcf3c98c1cf185d78af (diff) | |
download | rails-cc81af2fe438fd3e2c8f95dae8f757de0bab1b53.tar.gz rails-cc81af2fe438fd3e2c8f95dae8f757de0bab1b53.tar.bz2 rails-cc81af2fe438fd3e2c8f95dae8f757de0bab1b53.zip |
Use a better word
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 824ffb5d7a..dd8d229e6a 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -66,7 +66,7 @@ class ClientsController < ActionController::Base if params[:status] == "activated" @clients = Client.activated else - @clients = Client.unactivated + @clients = Client.inactivated end end |