From e561532bab914f7dc1e54c141b0bac0c25890626 Mon Sep 17 00:00:00 2001 From: Manuel Meurer Date: Thu, 21 Jul 2011 05:12:09 -0700 Subject: [PATCH] Fixed typos. --- lib/cancan/controller_additions.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cancan/controller_additions.rb b/lib/cancan/controller_additions.rb index 1addd55..12e0875 100644 --- a/lib/cancan/controller_additions.rb +++ b/lib/cancan/controller_additions.rb @@ -186,7 +186,7 @@ module CanCan skip_authorize_resource(*args) end - # Skip both the loading behavior of CanCan. This is useful when using +load_and_authorize_resource+ but want to + # Skip the loading behavior of CanCan. This is useful when using +load_and_authorize_resource+ but want to # only do authorization on certain actions. You can pass :only and :except options to specify which actions to # skip the effects on. It will apply to all actions by default. # @@ -202,7 +202,7 @@ module CanCan cancan_skipper[:load][name] = options end - # Skip both the authorization behavior of CanCan. This is useful when using +load_and_authorize_resource+ but want to + # Skip the authorization behavior of CanCan. This is useful when using +load_and_authorize_resource+ but want to # only do loading on certain actions. You can pass :only and :except options to specify which actions to # skip the effects on. It will apply to all actions by default. #