diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-28 10:35:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-28 10:35:56 +0000 |
commit | c071928c941d4107c74dd70e1dac480eeed8a675 (patch) | |
tree | fd582843010960575aa2dd28b2589fc9e5f03253 | |
parent | 51e638912257eb25fa3ada96777b14573e7d28b5 (diff) | |
download | brdo-c071928c941d4107c74dd70e1dac480eeed8a675.tar.gz brdo-c071928c941d4107c74dd70e1dac480eeed8a675.tar.bz2 |
- Patch #533004 by tic2000: Implement instead of Implementation in phpDoc.
-rw-r--r-- | modules/toolbar/toolbar.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/toolbar/toolbar.module b/modules/toolbar/toolbar.module index d096300bf..13c5f2218 100644 --- a/modules/toolbar/toolbar.module +++ b/modules/toolbar/toolbar.module @@ -19,7 +19,7 @@ function toolbar_permission() { } /** - * Implementation of hook_theme(). + * Implement hook_theme(). */ function toolbar_theme($existing, $type, $theme, $path) { $items['toolbar'] = array( @@ -31,7 +31,7 @@ function toolbar_theme($existing, $type, $theme, $path) { } /** - * Implementation of hook_page_alter(). + * Implement hook_page_alter(). * * Add admin toolbar to the page_top region automatically. */ @@ -42,7 +42,7 @@ function toolbar_page_alter(&$page) { } /** - * Implementation of hook_preprocess_page(). + * Implement hook_preprocess_page(). * * Add some page classes, so global page theming can adjust to the toolbar. */ |