Fix grammatical error in ActiveModel::MassAssignmentSecurity::PermissionSet#deny? NotImplementedError message

This commit is contained in:
Steve Richert 2012-01-02 14:45:09 -05:00
parent deaa68281c
commit 5de4545dde
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module ActiveModel
end
def deny?(key)
raise NotImplementedError, "#deny?(key) suppose to be overwritten"
raise NotImplementedError, "#deny?(key) supposed to be overwritten"
end
protected