From cc81af2fe438fd3e2c8f95dae8f757de0bab1b53 Mon Sep 17 00:00:00 2001 From: Agis Anastasopoulos Date: Fri, 26 Oct 2012 23:18:34 +0300 Subject: [PATCH] Use a better word --- guides/source/action_controller_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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