Index: revision_deletion.module
===================================================================
--- revision_deletion.module	(revision 1993)
+++ revision_deletion.module	(working copy)
@@ -12,7 +12,7 @@
  * Implementation of hook_perm().
  */
 function revision_deletion_perm() {
-  return array('REV_DEL_PERM');
+  return array(REV_DEL_PERM);
 }
 
 /**
@@ -21,7 +21,7 @@
 function revision_deletion_help($section) {
   switch ($section) {
     case 'admin/help#revision_deletion':
-      return t('This module will greatly speed up the task of deleting old revisions of nodes. The database clutter and space can be quickly reclaimed as this module, on cron runs, will delete aged revisions (never the current revision) of nodes older than a set period of time. Options include frequency of the cron deletion job, and the age of revisions before being deleted. Cron.php must be run execute.');
+      return t('This module will greatly speed up the task of deleting old revisions of nodes. The database clutter and space can be quickly reclaimed as this module, on cron runs, will delete aged revisions (never the current revision) of nodes older than a set period of time. Options include frequency of the cron deletion job, and the age of revisions before being deleted. Cron.php must be run to execute.');
     case 'admin/modules#description':
       return t('Delete old revision of nodes quickly');
   }
@@ -177,4 +177,4 @@
 	$node = node_load($data->nid);
 	node_invoke_nodeapi($node, 'delete revision');
 	watchdog('content', t('@type: deleted %title revision %revision.', array('@type' => t($data->type), '%title' => $data->title, '%revision' => $data->vid)));
-}
\ No newline at end of file
+}
