diff --git a/plugins/FeedsCSVParser.inc b/plugins/FeedsCSVParser.inc
index 5e34da0539a3e429f54d31a3108d0d41763d7dde..2c99c5f820b2dbc6c79d0179902173be653a48d8 100644
--- a/plugins/FeedsCSVParser.inc
+++ b/plugins/FeedsCSVParser.inc
@@ -7,7 +7,7 @@
 class FeedsCSVParser extends FeedsParser {
 
   /**
-   * Parses a file in CSV format.
+   * Implementation of FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
 
@@ -42,7 +42,7 @@ class FeedsCSVParser extends FeedsParser {
   }
 
   /**
-   * Override parent::getSourceElement to use only lower keys.
+   * Override parent::getSourceElement() to use only lower keys.
    */
   public function getSourceElement($item, $element_key) {
     $element_key = strtolower($element_key);
diff --git a/plugins/FeedsFetcher.inc b/plugins/FeedsFetcher.inc
index a70d52ea9e98580b8d8376555de952a499f57249..229989ef1eaeccedef2978a75bd6e8dd2c2de6ea 100644
--- a/plugins/FeedsFetcher.inc
+++ b/plugins/FeedsFetcher.inc
@@ -11,7 +11,7 @@ abstract class FeedsFetcher extends FeedsPlugin {
   /**
    * Fetch content from a source and return it.
    *
-   * Stub method. Every class that extends FeedsFetcher must implement this method.
+   * Every class that extends FeedsFetcher must implement this method.
    *
    * @param $source
    *   Source value as entered by user through sourceForm().
diff --git a/plugins/FeedsFileFetcher.inc b/plugins/FeedsFileFetcher.inc
index b8d8558b9a4f9610c7271e9fdfa6ac5e0ab1a225..85507dce6de5440d8731b911c9bc32f2f34937b7 100644
--- a/plugins/FeedsFileFetcher.inc
+++ b/plugins/FeedsFileFetcher.inc
@@ -12,7 +12,7 @@
 class FeedsFileFetcher extends FeedsFetcher {
 
   /**
-   * Fetch a local resource.
+   * Implementation of FeedsFetcher::fetch().
    */
   public function fetch(FeedsSource $source) {
     $source_config = $source->getConfigFor($this);
diff --git a/plugins/FeedsHTTPFetcher.inc b/plugins/FeedsHTTPFetcher.inc
index 7feb16a495da4f3d2196801fb3e64bfaa5ac2608..dda77f9677ae5fcd50953e10a472090e1fcbdbeb 100644
--- a/plugins/FeedsHTTPFetcher.inc
+++ b/plugins/FeedsHTTPFetcher.inc
@@ -12,13 +12,7 @@
 class FeedsHTTPFetcher extends FeedsFetcher {
 
   /**
-   * Fetch a resource via http.
-   *
-   * @param $resource
-   *   A resource description of type FeedsResource.
-   *
-   * @return
-   *   A string from the requested location if successful, or FALSE if not.
+   * Implementation of FeedsFetcher::fetch().
    */
   public function fetch(FeedsSource $source) {
     $source_config = $source->getConfigFor($this);
diff --git a/plugins/FeedsOPMLParser.inc b/plugins/FeedsOPMLParser.inc
index e581932bf950700b631bf5aec9850dddf08baaff..547f63603a9385ae7de01be1002b43d23f59ee97 100644
--- a/plugins/FeedsOPMLParser.inc
+++ b/plugins/FeedsOPMLParser.inc
@@ -12,7 +12,7 @@
 class FeedsOPMLParser extends FeedsParser {
 
   /**
-   * Parses an RSS/Atom formatted string.
+   * Implementation of 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 fda63183de87b5ccf9cc8131e28ead81906318a6..d4340a28d50c5835d96a7bf7fa7c01c407bac68e 100644
--- a/plugins/FeedsParser.inc
+++ b/plugins/FeedsParser.inc
@@ -9,7 +9,7 @@ abstract class FeedsParser extends FeedsPlugin {
   /**
    * Parse content fetched by fetcher.
    *
-   * Stub method. Extending classes must implement this method.
+   * Extending classes must implement this method.
    *
    * @param $batch
    *   FeedsImportBatch returned by fetcher.
diff --git a/plugins/FeedsSimplePieParser.inc b/plugins/FeedsSimplePieParser.inc
index 601aaa6a6dcfef94aa744882392e25258cd23294..f5b97ef691c0bdc03099d896faee55001d397677 100644
--- a/plugins/FeedsSimplePieParser.inc
+++ b/plugins/FeedsSimplePieParser.inc
@@ -9,7 +9,7 @@
 class FeedsSimplePieParser extends FeedsParser {
 
   /**
-   * Parses a string in RSS/Atom format.
+   * Implementation of FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     feeds_include_library('simplepie.inc', 'simplepie');
diff --git a/plugins/FeedsSyndicationParser.inc b/plugins/FeedsSyndicationParser.inc
index 8dddacf2ca62a374c1a709096f959456aa3fc43f..1561bce211580055629b15453634b7a75a09bbb3 100644
--- a/plugins/FeedsSyndicationParser.inc
+++ b/plugins/FeedsSyndicationParser.inc
@@ -9,7 +9,7 @@
 class FeedsSyndicationParser extends FeedsParser {
 
   /**
-   * Parses a string in RSS/Atom format.
+   * Implementation of FeedsParser::parse().
    */
   public function parse(FeedsImportBatch $batch, FeedsSource $source) {
     feeds_include_library('common_syndication_parser.inc', 'common_syndication_parser');