summaryrefslogtreecommitdiff
path: root/modules/trigger/trigger.module
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-07 03:52:32 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-01-07 03:52:32 +0000
commit5c1f807a464101d64d1f4251a7562889b148d843 (patch)
treece5fd4b2f98cf195fd263c8594ba17caaae5ef6b /modules/trigger/trigger.module
parentebd739053343f131f38b55a0a62ccc259766277b (diff)
downloadbrdo-5c1f807a464101d64d1f4251a7562889b148d843.tar.gz
brdo-5c1f807a464101d64d1f4251a7562889b148d843.tar.bz2
#353480 follow-up by dereine and sun: Fix typo.
Diffstat (limited to 'modules/trigger/trigger.module')
-rw-r--r--modules/trigger/trigger.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index 9979a8b7c..59f280962 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -306,28 +306,28 @@ function _trigger_normalize_comment_context($type, $comment) {
* Implementation of hook_comment_insert().
*/
function trigger_comment_insert($form_values) {
- _trigger_coment($form_values, 'insert');
+ _trigger_comment($form_values, 'insert');
}
/**
* Implementation of hook_comment_update().
*/
function trigger_comment_update($form_values) {
- _trigger_coment($form_values, 'update');
+ _trigger_comment($form_values, 'update');
}
/**
* Implementation of hook_comment_delete().
*/
function trigger_comment_delete($comment) {
- _trigger_coment($comment, 'delete');
+ _trigger_comment($comment, 'delete');
}
/**
* Implementation of hook_comment_view().
*/
function trigger_comment_view($comment) {
- _trigger_coment($comment, 'view');
+ _trigger_comment($comment, 'view');
}
/**