diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-27 18:34:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-27 18:34:03 +0000 |
commit | 0f4060f377a6ccea57a183b3c3e4801c450f5476 (patch) | |
tree | 07a7bd87373613f3e884c8f56bfb9911eda38511 /modules/simpletest/simpletest.module | |
parent | 5bdcc4ada232bf92e3d529962d9f7aa2536605cc (diff) | |
download | brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.gz brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.bz2 |
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
Diffstat (limited to 'modules/simpletest/simpletest.module')
-rw-r--r-- | modules/simpletest/simpletest.module | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/simpletest/simpletest.module b/modules/simpletest/simpletest.module index cad833381..51f6e21f3 100644 --- a/modules/simpletest/simpletest.module +++ b/modules/simpletest/simpletest.module @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_help(). + * Implement hook_help(). */ function simpletest_help($path, $arg) { switch ($path) { @@ -22,7 +22,7 @@ function simpletest_help($path, $arg) { } /** - * Implementation of hook_menu(). + * Implement hook_menu(). */ function simpletest_menu() { $items['admin/development'] = array( @@ -53,7 +53,7 @@ function simpletest_menu() { } /** - * Implementation of hook_perm(). + * Implement hook_perm(). */ function simpletest_perm() { return array( @@ -65,7 +65,7 @@ function simpletest_perm() { } /** - * Implementation of hook_theme(). + * Implement hook_theme(). */ function simpletest_theme() { return array( @@ -81,7 +81,7 @@ function simpletest_theme() { } /** - * Implementation of hook_js_alter(). + * Implement hook_js_alter(). */ function simpletest_js_alter(&$javascript) { // Since SimpleTest is a special use case for the table select, stick the |