diff options
Diffstat (limited to 'modules/comment/comment.install')
-rw-r--r-- | modules/comment/comment.install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/comment/comment.install b/modules/comment/comment.install index 1f4767af9..fd227065b 100644 --- a/modules/comment/comment.install +++ b/modules/comment/comment.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement hook_install(). */ function comment_install() { // Create tables. @@ -15,7 +15,7 @@ function comment_install() { } /** - * Implementation of hook_uninstall(). + * Implement hook_uninstall(). */ function comment_uninstall() { // Remove tables. @@ -38,7 +38,7 @@ function comment_uninstall() { } /** - * Implementation of hook_enable(). + * Implement hook_enable(). */ function comment_enable() { // Insert records into the node_comment_statistics for nodes that are missing. @@ -159,7 +159,7 @@ function comment_update_7002() { */ /** - * Implementation of hook_schema(). + * Implement hook_schema(). */ function comment_schema() { $schema['comment'] = array( |