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/blogapi | |
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/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.install | 6 | ||||
-rw-r--r-- | modules/blogapi/blogapi.module | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/modules/blogapi/blogapi.install b/modules/blogapi/blogapi.install index 22820ea4a..2e1129c7d 100644 --- a/modules/blogapi/blogapi.install +++ b/modules/blogapi/blogapi.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement hook_install(). */ function blogapi_install() { // Create tables. @@ -15,7 +15,7 @@ function blogapi_install() { } /** - * Implementation of hook_uninstall(). + * Implement hook_uninstall(). */ function blogapi_uninstall() { // Remove tables. @@ -24,7 +24,7 @@ function blogapi_uninstall() { /** - * Implementation of hook_schema(). + * Implement hook_schema(). */ function blogapi_schema() { $schema['blogapi_files'] = array( diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index cf66d4a06..8f6f36099 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_help(). + * Implement hook_help(). */ function blogapi_help($path, $arg) { switch ($path) { @@ -21,7 +21,7 @@ function blogapi_help($path, $arg) { } /** - * Implementation of hook_perm(). + * Implement hook_perm(). */ function blogapi_perm() { return array( @@ -33,7 +33,7 @@ function blogapi_perm() { } /** - * Implementation of hook_xmlrpc(). + * Implement hook_xmlrpc(). */ function blogapi_xmlrpc() { return array( @@ -809,7 +809,7 @@ function blogapi_admin_settings() { } /** - * Implementation of hook_menu(). + * Implement hook_menu(). */ function blogapi_menu() { $items['blogapi/rsd'] = array( @@ -831,7 +831,7 @@ function blogapi_menu() { } /** - * Implementation of hook_init(). + * Implement hook_init(). */ function blogapi_init() { if (drupal_is_front_page()) { |