Fixing typos in doc blocks. Fixes #5898

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7941 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-12-18 14:31:53 +00:00
parent eb653b8cba
commit ac87db981a

View file

@ -63,7 +63,7 @@ class AuthComponent extends Object {
* 'controller' will validate against Controller::isAuthorized() * 'controller' will validate against Controller::isAuthorized()
* 'actions' will validate Controller::action against an AclComponent::check() * 'actions' will validate Controller::action against an AclComponent::check()
* 'crud' will validate mapActions against an AclComponent::check() * 'crud' will validate mapActions against an AclComponent::check()
* array('model'=> 'name'); will validate mapActions against model $name::isAuthorize(user, controller, mapAction) * array('model'=> 'name'); will validate mapActions against model $name::isAuthorized(user, controller, mapAction)
* 'object' will validate Controller::action against object::isAuthorized(user, controller, action) * 'object' will validate Controller::action against object::isAuthorized(user, controller, action)
* *
* @var mixed * @var mixed
@ -438,7 +438,7 @@ class AuthComponent extends Object {
* 'actions' will validate Controller::action against an AclComponent::check() * 'actions' will validate Controller::action against an AclComponent::check()
* 'crud' will validate mapActions against an AclComponent::check() * 'crud' will validate mapActions against an AclComponent::check()
* array('model'=> 'name'); will validate mapActions against model * array('model'=> 'name'); will validate mapActions against model
* $name::isAuthorize(user, controller, mapAction) * $name::isAuthorized(user, controller, mapAction)
* 'object' will validate Controller::action against * 'object' will validate Controller::action against
* object::isAuthorized(user, controller, action) * object::isAuthorized(user, controller, action)
* *