diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-08 10:35:43 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-08 10:35:43 +0000 |
commit | b78a990270fe41d582ae22b7f42df292428ec74b (patch) | |
tree | 9dcece10ab0e1a5c8e012ac7ccb5d4db71fec4ac /modules/path | |
parent | 0ab0b1d65f494dbef7f2152b789c721711000001 (diff) | |
download | brdo-b78a990270fe41d582ae22b7f42df292428ec74b.tar.gz brdo-b78a990270fe41d582ae22b7f42df292428ec74b.tar.bz2 |
#207569 by ScoutBaker (minor code style): clean up @see usage in phpdoc blocks
Diffstat (limited to 'modules/path')
-rw-r--r-- | modules/path/path.admin.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/path/path.admin.inc b/modules/path/path.admin.inc index 71488639d..e5966b3da 100644 --- a/modules/path/path.admin.inc +++ b/modules/path/path.admin.inc @@ -81,8 +81,8 @@ function path_admin_edit($pid = 0) { * Return a form for editing or creating an individual URL alias. * * @ingroup forms - * @see path_admin_form_validate(). - * @see path_admin_form_submit(). + * @see path_admin_form_validate() + * @see path_admin_form_submit() */ function path_admin_form(&$form_state, $edit = array('src' => '', 'dst' => '', 'language' => '', 'pid' => NULL)) { @@ -186,7 +186,7 @@ function path_admin_delete_confirm_submit($form, &$form_state) { * Return a form to filter URL aliases. * * @ingroup forms - * @see path_admin_filter_form_submit(). + * @see path_admin_filter_form_submit() */ function path_admin_filter_form(&$form_state, $keys = '') { $form['#attributes'] = array('class' => 'search-form'); |