diff options
Diffstat (limited to 'modules/taxonomy/taxonomy.install')
-rw-r--r-- | modules/taxonomy/taxonomy.install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install index 4e8a0907e..ff0f6607f 100644 --- a/modules/taxonomy/taxonomy.install +++ b/modules/taxonomy/taxonomy.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement hook_install(). */ function taxonomy_install() { // Create tables. @@ -15,7 +15,7 @@ function taxonomy_install() { } /** - * Implementation of hook_uninstall(). + * Implement hook_uninstall(). */ function taxonomy_uninstall() { // Remove tables. @@ -27,7 +27,7 @@ function taxonomy_uninstall() { } /** - * Implementation of hook_schema(). + * Implement hook_schema(). */ function taxonomy_schema() { $schema['taxonomy_term_data'] = array( |