diff --git a/feeds.install b/feeds.install
index 652994115cca83bf8e95faf547809f559ab263e2..e515a1ffd49a5e415a60b444caabd633d05bdbb8 100644
--- a/feeds.install
+++ b/feeds.install
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_schema().
+ * Implements hook_schema().
  */
 function feeds_schema() {
   $schema = array();
diff --git a/feeds.module b/feeds.module
index 1d1d85d42599a24aba72ae29341f1987a8f92f46..b35413b64fae17ec46c94f81a17d0f263719ad86 100644
--- a/feeds.module
+++ b/feeds.module
@@ -24,7 +24,7 @@ define('FEEDS_BATCH_ACTIVE', 0);
  */
 
 /**
- * Implementation of hook_cron().
+ * Implements hook_cron().
  */
 function feeds_cron() {
   if ($importers = feeds_reschedule()) {
@@ -41,7 +41,7 @@ function feeds_cron() {
 }
 
 /**
- * Implementation of hook_cron_queue_info().
+ * Implements hook_cron_queue_info().
  *
  * Invoked by drupal_queue module if present.
  */
@@ -119,7 +119,7 @@ function feeds_reschedule($importer_id = NULL) {
 }
 
 /**
- * Implementation of feeds_permission().
+ * Implements feeds_permission().
  */
 function feeds_permission() {
   $perms = array(
@@ -137,7 +137,7 @@ function feeds_permission() {
 }
 
 /**
- * Implementation of hook_forms().
+ * Implements hook_forms().
  *
  * Declare form callbacks for all known classes derived from FeedsConfigurable.
  */
@@ -152,7 +152,7 @@ function feeds_forms() {
 }
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function feeds_menu() {
   // Register a callback for all feed configurations that are not attached to a content type.
@@ -225,7 +225,7 @@ function feeds_importer_load($id) {
 }
 
 /**
- * Implementation of hook_theme().
+ * Implements hook_theme().
  */
 function feeds_theme() {
   return array(
@@ -276,7 +276,7 @@ function feeds_page_access() {
 }
 
 /**
- * Implementation of hook_views_api().
+ * Implements hook_views_api().
  */
 function feeds_views_api() {
   return array(
@@ -286,7 +286,7 @@ function feeds_views_api() {
 }
 
 /**
- * Implementation of hook_ctools_plugin_api().
+ * Implements hook_ctools_plugin_api().
  */
 function feeds_ctools_plugin_api($owner, $api) {
   if ($owner == 'feeds' && $api == 'plugins') {
@@ -295,7 +295,7 @@ function feeds_ctools_plugin_api($owner, $api) {
 }
 
 /**
- * Implementation of hook_ctools_plugin_type().
+ * Implements hook_ctools_plugin_type().
  */
 function feeds_ctools_plugin_type() {
   return array(
@@ -308,7 +308,7 @@ function feeds_ctools_plugin_type() {
 }
 
 /**
- * Implementation of hook_feeds_plugins().
+ * Implements hook_feeds_plugins().
  */
 function feeds_feeds_plugins() {
   module_load_include('inc', 'feeds', 'feeds.plugins');
@@ -316,7 +316,7 @@ function feeds_feeds_plugins() {
 }
 
 /**
- * Implementation of hook_nodeapi().
+ * Implements hook_nodeapi().
  *
  * @todo For Drupal 7, revisit static cache based shuttling of values between
  *   'validate' and 'update'/'insert'.
@@ -430,7 +430,7 @@ function _feeds_nodeapi_node_processor($node, $op) {
 }
 
 /**
- * Implementation of hook_taxonomy().
+ * Implements hook_taxonomy().
  */
 function feeds_taxonomy($op = NULL, $type = NULL, $term = NULL) {
   if ($type =='term' && $term['tid']) {
@@ -457,7 +457,7 @@ function feeds_taxonomy($op = NULL, $type = NULL, $term = NULL) {
 }
 
 /**
- * Implementation of hook_form_alter().
+ * Implements hook_form_alter().
  */
 function feeds_form_alter(&$form, $form_state, $form_id) {
   if ($form['#id'] == 'node-form') {
diff --git a/feeds_ui/feeds_ui.module b/feeds_ui/feeds_ui.module
index e85e7be58246ecbb9a75716f47abb40a78f25b95..2fe47a5a0c51fe1b852e3415a85de7272638b8a6 100644
--- a/feeds_ui/feeds_ui.module
+++ b/feeds_ui/feeds_ui.module
@@ -5,7 +5,7 @@
  */
 
 /**
- * Implementation of hook_help().
+ * Implements hook_help().
  */
 function feeds_ui_help($path, $arg) {
   switch ($path) {
@@ -19,7 +19,7 @@ function feeds_ui_help($path, $arg) {
 }
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function feeds_ui_menu() {
   $items = array();
@@ -83,7 +83,7 @@ function feeds_ui_menu() {
 }
 
 /**
- * Implementation of hook_theme().
+ * Implements hook_theme().
  */
 function feeds_ui_theme() {
   return array(
diff --git a/includes/FeedsConfigurable.inc b/includes/FeedsConfigurable.inc
index c152c7a9b583ddb888a4582d83e64aa5032e1e23..7c3aff9a47eb5e60975d7d8b3d873cd30d8fe28c 100644
--- a/includes/FeedsConfigurable.inc
+++ b/includes/FeedsConfigurable.inc
@@ -141,7 +141,7 @@ abstract class FeedsConfigurable {
   }
 
   /**
-   * Implementation of getConfig().
+   * Implements getConfig().
    */
   public function getConfig() {
     return $this->config;
diff --git a/mappers/content.inc b/mappers/content.inc
index f1f2c6c5d20a33134866f7634fb2bc0c36d9591c..416cfd10be6fdbb48c651240ba4897697c9c9cd5 100644
--- a/mappers/content.inc
+++ b/mappers/content.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  *
  * @see FeedsNodeProcessor::getMappingTargets().
  */
diff --git a/mappers/date.inc b/mappers/date.inc
index 11434b8a32e8098ac5da5e3de6044010aefb657c..4325a4ba6219b59b6bdc6bb15626fac3d86bcc52 100644
--- a/mappers/date.inc
+++ b/mappers/date.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  *
  * @see FeedsNodeProcessor::getMappingTargets().
  *
@@ -37,7 +37,7 @@ function date_feeds_node_processor_targets_alter(&$targets, $content_type) {
 }
 
 /**
- * Implementation of hook_feeds_set_target().
+ * Implements hook_feeds_set_target().
  *
  * @param $node
  *   The target node.
diff --git a/mappers/emfield.inc b/mappers/emfield.inc
index 2c59bcecf0a28d6dd235ba045625becc39a1a814..5fa4219472a4d6e98007b6bb1e4b7d596e3193c3 100644
--- a/mappers/emfield.inc
+++ b/mappers/emfield.inc
@@ -8,7 +8,7 @@
  */
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  *
  * @see FeedsNodeProcessor::getMappingTargets().
  */
@@ -56,4 +56,4 @@ function emfield_feeds_set_target(&$node, $target, $value) {
   }
 
   $node->$target = $field;
-}
\ No newline at end of file
+}
diff --git a/mappers/filefield.inc b/mappers/filefield.inc
index a4ff57efc1aacd27c21055e4106c6f7406da3d0e..82e11bb7f498924259a116e310bd22d0c9cbf5d5 100644
--- a/mappers/filefield.inc
+++ b/mappers/filefield.inc
@@ -10,7 +10,7 @@
  */
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter()
+ * Implements hook_feeds_node_processor_targets_alter()
  */
 function filefield_feeds_node_processor_targets_alter(&$targets, $content_type) {
   $info = content_types($content_type);
@@ -30,7 +30,7 @@ function filefield_feeds_node_processor_targets_alter(&$targets, $content_type)
 }
 
 /**
- * Implementation of hook_feeds_set_target().
+ * Implements hook_feeds_set_target().
  *
  * @param $node
  *   The target node.
diff --git a/mappers/link.inc b/mappers/link.inc
index 39fbf9dec59790507fb759305bd4f754af1cf0b7..d1d7aac9438bd0f361724aed6d596849876d6fb3 100644
--- a/mappers/link.inc
+++ b/mappers/link.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  */
 function link_feeds_node_processor_targets_alter(&$targets, $content_type) {
   $info = content_types($content_type);
diff --git a/mappers/locale.inc b/mappers/locale.inc
index 02b0b4858f4ed49e00d9e7fd56e0d3e2201d8785..d5478d522cf1d0ef65ec26fe77103c0fc136a40a 100644
--- a/mappers/locale.inc
+++ b/mappers/locale.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_feeds_parser_sources_alter().
+ * Implements hook_feeds_parser_sources_alter().
  *
  * Declare the language of the feed node as a mapping source. This will most
  * commonly be used for having feed item nodes inherit the language
@@ -33,7 +33,7 @@ function locale_feeds_get_source(FeedsImportBatch $batch, $key) {
 }
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  */
 function locale_feeds_node_processor_targets_alter(&$targets, $content_type) {
   if (variable_get('language_content_type_'. $content_type, FALSE)) {
diff --git a/mappers/og.inc b/mappers/og.inc
index bb0f3813ffa0c379596e2522d2181885866e3a52..205e5f50b4fd5d0d6ddbdee2001dd20b2a4dbb11 100644
--- a/mappers/og.inc
+++ b/mappers/og.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_feeds_parser_sources_alter().
+ * Implements hook_feeds_parser_sources_alter().
  */
 function og_feeds_parser_sources_alter(&$sources, $content_type) {
   if (!empty($content_type)) {
@@ -36,7 +36,7 @@ function og_feeds_get_source(FeedsImportBatch $batch, $key) {
 }
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  */
 function og_feeds_node_processor_targets_alter(&$targets, $content_type) {
   if (in_array($content_type, og_get_types('group_post'))) {
diff --git a/mappers/profile.inc b/mappers/profile.inc
index 49061c9ae7b542fd5806bedc2949782a3d3eb2c7..33f6935fbffaad36a8c3f7201a75728892b5adb1 100644
--- a/mappers/profile.inc
+++ b/mappers/profile.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of feeds_user_processor_target_alter().
+ * Implements feeds_user_processor_target_alter().
  */
 function profile_feeds_user_processor_targets_alter(&$targets) {
   if (module_exists('profile')) {
diff --git a/mappers/taxonomy.inc b/mappers/taxonomy.inc
index 792795a209508d9a2d3e099663d5450c687a2b7c..92405c51032a39eb59f1872837c09d028e98eed8 100644
--- a/mappers/taxonomy.inc
+++ b/mappers/taxonomy.inc
@@ -7,7 +7,7 @@
  */
 
 /**
- * Implementation of hook_feeds_parser_sources_alter().
+ * Implements hook_feeds_parser_sources_alter().
  */
 function taxonomy_feeds_parser_sources_alter(&$sources, $content_type) {
   if (!empty($content_type)) {
@@ -39,7 +39,7 @@ function taxonomy_feeds_get_source(FeedsImportBatch $batch, $key) {
 }
 
 /**
- * Implementation of hook_feeds_node_processor_targets_alter().
+ * Implements hook_feeds_node_processor_targets_alter().
  *
  * @see FeedsNodeProcessor::getMappingTargets().
  */
diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc
index ab3961bc9c0d10157cd885f2c4017b98e75cd022..c6c2819bab2bed8bcf948a8ccf9643f90d53f189 100644
--- a/plugins/FeedsCSVParser.inc
+++ b/plugins/FeedsCSVParser.inc
@@ -7,7 +7,7 @@
 class FeedsCSVParser extends FeedsParser {
 
   /**
-   * Implementation of FeedsParser::parse().
+   * Implements FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
 
diff --git a/plugins/FeedsFeedNodeProcessor.inc b/plugins/FeedsFeedNodeProcessor.inc
index 193ae65630959878cb49e6a149dc053a8529e63b..3758e8934582f8c4122fdbde6f78b9197dab6b05 100644
--- a/plugins/FeedsFeedNodeProcessor.inc
+++ b/plugins/FeedsFeedNodeProcessor.inc
@@ -13,7 +13,7 @@
 class FeedsFeedNodeProcessor extends FeedsProcessor {
 
   /**
-   * Implementation of FeedsProcessor::process().
+   * Implements FeedsProcessor::process().
    */
   public function process(FeedsImportBatch $batch, FeedsSource $source) {
     while ($item = $batch->shiftItem()) {
@@ -56,7 +56,7 @@ class FeedsFeedNodeProcessor extends FeedsProcessor {
   }
 
   /**
-   * Implementation of FeedsProcessor::clear().
+   * Implements FeedsProcessor::clear().
    */
   public function clear(FeedsBatch $batch, FeedsSource $source) {
     // Do not support deleting imported items as we would have to delete all
diff --git a/plugins/FeedsFileFetcher.inc b/plugins/FeedsFileFetcher.inc
index bc69d3ab005b5d82d81077430ec01c6d75b68348..07226c3919ef01ecff6e5ead74b3875468f753aa 100644
--- a/plugins/FeedsFileFetcher.inc
+++ b/plugins/FeedsFileFetcher.inc
@@ -22,14 +22,14 @@ class FeedsFileBatch extends FeedsImportBatch {
   }
 
   /**
-   * Implementation of FeedsImportBatch::getRaw();
+   * Implements FeedsImportBatch::getRaw();
    */
   public function getRaw() {
     return file_get_contents(realpath($this->file_path));
   }
 
   /**
-   * Implementation of FeedsImportBatch::getFilePath().
+   * Implements FeedsImportBatch::getFilePath().
    */
   public function getFilePath() {
     if (!file_exists($this->file_path)) {
@@ -45,7 +45,7 @@ class FeedsFileBatch extends FeedsImportBatch {
 class FeedsFileFetcher extends FeedsFetcher {
 
   /**
-   * Implementation of FeedsFetcher::fetch().
+   * Implements FeedsFetcher::fetch().
    */
   public function fetch(FeedsSource $source) {
     $source_config = $source->getConfigFor($this);
diff --git a/plugins/FeedsHTTPFetcher.inc b/plugins/FeedsHTTPFetcher.inc
index 698d5c63955ae29a0d8974f4bc61459920d3e954..b1320f3b7cdf1a96f50659a2cb0ef5296ccf5c19 100644
--- a/plugins/FeedsHTTPFetcher.inc
+++ b/plugins/FeedsHTTPFetcher.inc
@@ -25,7 +25,7 @@ class FeedsHTTPBatch extends FeedsImportBatch {
   }
 
   /**
-   * Implementation of FeedsImportBatch::getRaw();
+   * Implements FeedsImportBatch::getRaw();
    */
   public function getRaw() {
     feeds_include_library('http_request.inc', 'http_request');
@@ -43,7 +43,7 @@ class FeedsHTTPBatch extends FeedsImportBatch {
 class FeedsHTTPFetcher extends FeedsFetcher {
 
   /**
-   * Implementation of FeedsFetcher::fetch().
+   * Implements FeedsFetcher::fetch().
    */
   public function fetch(FeedsSource $source) {
     $source_config = $source->getConfigFor($this);
@@ -64,7 +64,7 @@ class FeedsHTTPFetcher extends FeedsFetcher {
   }
 
   /**
-   * Implementation of FeedsFetcher::request().
+   * Implements FeedsFetcher::request().
    */
   public function request($feed_nid = 0) {
     feeds_dbg($_GET);
@@ -281,14 +281,14 @@ class PuSHEnvironment implements PuSHSubscriberEnvironmentInterface {
   }
 
   /**
-   * Implementation of PuSHSubscriberEnvironmentInterface::msg().
+   * Implements PuSHSubscriberEnvironmentInterface::msg().
    */
   public function msg($msg, $level = 'status') {
     drupal_set_message($msg, $level);
   }
 
   /**
-   * Implementation of PuSHSubscriberEnvironmentInterface::log().
+   * Implements PuSHSubscriberEnvironmentInterface::log().
    */
   public function log($msg, $level = 'status') {
     switch ($level) {
diff --git a/plugins/FeedsNodeProcessor.inc b/plugins/FeedsNodeProcessor.inc
index 281e8c1947d8854ed89107efdf916174ad60ecae..49199dc1b3939e9be9c4582fc1ad2572f78f1c6a 100644
--- a/plugins/FeedsNodeProcessor.inc
+++ b/plugins/FeedsNodeProcessor.inc
@@ -24,7 +24,7 @@ define('FEEDS_NODE_DEFAULT_FORMAT', -1);
 class FeedsNodeProcessor extends FeedsProcessor {
 
   /**
-   * Implementation of FeedsProcessor::process().
+   * Implements FeedsProcessor::process().
    */
   public function process(FeedsImportBatch $batch, FeedsSource $source) {
 
@@ -85,7 +85,7 @@ class FeedsNodeProcessor extends FeedsProcessor {
   }
 
   /**
-   * Implementation of FeedsProcessor::clear().
+   * Implements FeedsProcessor::clear().
    */
   public function clear(FeedsBatch $batch, FeedsSource $source) {
     if (!$batch->getTotal(FEEDS_CLEARING)) {
diff --git a/plugins/FeedsOPMLParser.inc b/plugins/FeedsOPMLParser.inc
index 30ea043e004221f0f13ce8d127083cf3167b0fbd..8ef7f8c5ab13880df641b6ee88f64bcd0b7b683a 100644
--- a/plugins/FeedsOPMLParser.inc
+++ b/plugins/FeedsOPMLParser.inc
@@ -12,7 +12,7 @@
 class FeedsOPMLParser extends FeedsParser {
 
   /**
-   * Implementation of FeedsParser::parse().
+   * Implements FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     feeds_include_library('opml_parser.inc', 'opml_parser');
diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc
index 87e6bb86b567c74a98d6f40e1ef666a823e90838..a7b0acd3f6e4a7d2e5d040c3cf9d87effc22a198 100644
--- a/plugins/FeedsParser.inc
+++ b/plugins/FeedsParser.inc
@@ -307,7 +307,7 @@ class FeedsDateTimeElement extends FeedsElement {
   }
 
   /**
-   * Implementation of toString magic php method.
+   * Implements toString magic php method.
    */
   public function __toString() {
     $val = $this->getValue();
diff --git a/plugins/FeedsPlugin.inc b/plugins/FeedsPlugin.inc
index 0dfa7c38d51499ffdc4b217104cf65d9796d5966..2bb09482f7e4b1139f261885b68646fd2e95212c 100644
--- a/plugins/FeedsPlugin.inc
+++ b/plugins/FeedsPlugin.inc
@@ -43,7 +43,7 @@ abstract class FeedsPlugin extends FeedsConfigurable implements FeedsSourceInter
   }
 
   /**
-   * Implementation of FeedsSourceInterface::sourceDefaults().
+   * Implements FeedsSourceInterface::sourceDefaults().
    */
   public function sourceDefaults() {
     $values = array_flip(array_keys($this->sourceForm(array())));
diff --git a/plugins/FeedsSimplePieParser.inc b/plugins/FeedsSimplePieParser.inc
index 7b7756a9a2ab7a7b1edd62fbc3908d0974f3efbe..b4711b122a00ad1b823c6a32bc15d2953f3131dc 100644
--- a/plugins/FeedsSimplePieParser.inc
+++ b/plugins/FeedsSimplePieParser.inc
@@ -58,7 +58,7 @@ class FeedsSimplePieEnclosure extends FeedsEnclosure {
 class FeedsSimplePieParser extends FeedsParser {
 
   /**
-   * Implementation of FeedsParser::parse().
+   * Implements FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     feeds_include_library('simplepie.inc', 'simplepie');
diff --git a/plugins/FeedsSitemapParser.inc b/plugins/FeedsSitemapParser.inc
index 2c80365e23e1e4c1f0352fe007ef200a59a187c4..f668efbc8bef45e28c1fcf06ec3173de471bed6c 100644
--- a/plugins/FeedsSitemapParser.inc
+++ b/plugins/FeedsSitemapParser.inc
@@ -6,7 +6,7 @@
  */
 class FeedsSitemapParser extends FeedsParser {
   /**
-   * Implementation of FeedsParser::parse().
+   * Implements FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     // Set time zone to GMT for parsing dates with strtotime().
@@ -31,7 +31,7 @@ class FeedsSitemapParser extends FeedsParser {
   }
 
   /**
-   * Implementation of FeedsParser::getMappingSources().
+   * Implements FeedsParser::getMappingSources().
    */
   public function getMappingSources() {
     return array(
diff --git a/plugins/FeedsSyndicationParser.inc b/plugins/FeedsSyndicationParser.inc
index 18577b1424bd3b5508eb32bbffc01afb03a6fea1..6a5dfe32aa6478836a6aba4c76b2b814b751be43 100644
--- a/plugins/FeedsSyndicationParser.inc
+++ b/plugins/FeedsSyndicationParser.inc
@@ -9,7 +9,7 @@
 class FeedsSyndicationParser extends FeedsParser {
 
   /**
-   * Implementation of FeedsParser::parse().
+   * Implements FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     feeds_include_library('common_syndication_parser.inc', 'common_syndication_parser');
diff --git a/plugins/FeedsTermProcessor.inc b/plugins/FeedsTermProcessor.inc
index 5b26c492d0a9d99b6d31c4776ef88b39809e57f7..1ff82d7d747714b214c29642874de44ba2146d9d 100644
--- a/plugins/FeedsTermProcessor.inc
+++ b/plugins/FeedsTermProcessor.inc
@@ -12,7 +12,7 @@
 class FeedsTermProcessor extends FeedsProcessor {
 
   /**
-   * Implementation of FeedsProcessor::process().
+   * Implements FeedsProcessor::process().
    */
   public function process(FeedsImportBatch $batch, FeedsSource $source) {
 
@@ -84,7 +84,7 @@ class FeedsTermProcessor extends FeedsProcessor {
   }
 
   /**
-   * Implementation of FeedsProcessor::clear().
+   * Implements FeedsProcessor::clear().
    */
   public function clear(FeedsBatch $batch, FeedsSource $source) {
     $deleted = 0;
diff --git a/plugins/FeedsUserProcessor.inc b/plugins/FeedsUserProcessor.inc
index 127dda95f92bb2c84f2e1222d07b6c930753de78..1f187b6fa18829c3b69831401e85e4eb778d3ffe 100644
--- a/plugins/FeedsUserProcessor.inc
+++ b/plugins/FeedsUserProcessor.inc
@@ -12,7 +12,7 @@
 class FeedsUserProcessor extends FeedsProcessor {
 
   /**
-   * Implementation of FeedsProcessor::process().
+   * Implements FeedsProcessor::process().
    */
   public function process(FeedsImportBatch $batch, FeedsSource $source) {
 
@@ -83,7 +83,7 @@ class FeedsUserProcessor extends FeedsProcessor {
   }
 
   /**
-   * Implementation of FeedsProcessor::clear().
+   * Implements FeedsProcessor::clear().
    */
   public function clear(FeedsBatch $batch, FeedsSource $source) {
     // Do not support deleting users as we have no way of knowing which ones we
diff --git a/views/feeds.views.inc b/views/feeds.views.inc
index 4f59afe33d907b19073b6dee605ec90ed387977e..2fc30e9c0281ffc31ab9a5e0ed6ffc35bb6779a9 100644
--- a/views/feeds.views.inc
+++ b/views/feeds.views.inc
@@ -9,7 +9,7 @@
  */
 
 /**
- * Implementation of hook_views_data().
+ * Implements hook_views_data().
  */
 function feeds_views_data() {
   $data = array();
@@ -175,7 +175,7 @@ function feeds_views_data() {
 }
 
 /**
- * Implementation of hook_views_handlers().
+ * Implements hook_views_handlers().
  */
 function feeds_views_handlers() {
   return array(