diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-05-08 15:51:01 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-05-08 15:51:01 -0400 |
commit | a22d7770d49716224b3c0ff43bf210b202d797dd (patch) | |
tree | b6debc41483c58c646a83eeec85db26bccd89ad8 /modules/user | |
parent | c09288a94eb89cf1015a6b6b8b218a14d9b686f7 (diff) | |
download | brdo-a22d7770d49716224b3c0ff43bf210b202d797dd.tar.gz brdo-a22d7770d49716224b3c0ff43bf210b202d797dd.tar.bz2 |
- Patch #1024684 by linclark: omit & in @param statements (for consistency).
Diffstat (limited to 'modules/user')
-rw-r--r-- | modules/user/user.api.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/user/user.api.php b/modules/user/user.api.php index 272731a4e..b674b12d4 100644 --- a/modules/user/user.api.php +++ b/modules/user/user.api.php @@ -126,7 +126,7 @@ function hook_user_cancel($edit, $account, $method) { * a method. If #access is defined, the method cannot be configured as default * method. * - * @param &$methods + * @param $methods * An array containing user account cancellation methods, keyed by method id. * * @see user_cancel_methods() @@ -213,7 +213,7 @@ function hook_user_categories() { * user account object is loaded, modules may add to $edit['data'] in order * to have their data serialized on save. * - * @param &$edit + * @param $edit * The array of form values submitted by the user. * @param $account * The user object on which the operation is performed. @@ -236,7 +236,7 @@ function hook_user_presave(&$edit, $account, $category) { * The module should save its custom additions to the user object into the * database. * - * @param &$edit + * @param $edit * The array of form values submitted by the user. * @param $account * The user object on which the operation is being performed. @@ -261,7 +261,7 @@ function hook_user_insert(&$edit, $account, $category) { * Modules may use this hook to update their user data in a custom storage * after a user account has been updated. * - * @param &$edit + * @param $edit * The array of form values submitted by the user. * @param $account * The user object on which the operation is performed. @@ -283,7 +283,7 @@ function hook_user_update(&$edit, $account, $category) { /** * The user just logged in. * - * @param &$edit + * @param $edit * The array of form values submitted by the user. * @param $account * The user object on which the operation was just performed. |