diff --git a/simplenews_scheduler.api.php b/simplenews_scheduler.api.php
index 56e04ef..6cab668 100644
--- a/simplenews_scheduler.api.php
+++ b/simplenews_scheduler.api.php
@@ -12,7 +12,12 @@
  * is for example usefull if you have fields in the template node that contain
  * information about data that should get rendered dynamically into the edition
  * node depenedent on the current schedule date.
+ *
+ * @param $node
+ *   The cloned node object based on the scheduler node.
+ * @param $scheduler_node
+ *   The original scheduler node object.
  */
-function hook_simplenews_scheduler_cloned_node_alter($node) {
+function hook_simplenews_scheduler_edition_node_alter($node, $scheduler_node) {
   $node->title = 'Your newsletter from ' . REQUEST_TIME;
 }
diff --git a/simplenews_scheduler.module b/simplenews_scheduler.module
index cdc0473..6ec6569 100644
--- a/simplenews_scheduler.module
+++ b/simplenews_scheduler.module
@@ -679,9 +679,9 @@ function _simplenews_scheduler_new_edition($nid, $edition_time) {
   // Run the title through token replacement.
   $edition_node->title = token_replace($edition_node->title, array('node' => $edition_node));
 
-  // Invoke hook_simplenews_scheduler_cloned_node_alter() to give installed modules a chance to
-  // modify the cloned edition node if necessary before it gets saved.
-  drupal_alter('simplenews_scheduler_cloned_node', $edition_node);
+  // Invoke simplenews_scheduler_edition_node() to give installed modules a
+  // chance to modify the cloned edition node if necessary before it gets saved.
+  drupal_alter('simplenews_scheduler_edition_node', $edition_node);
 
   // Save the changes of other modules
   node_save($edition_node);
