diff --git a/plugins/destinations/menu.inc b/plugins/destinations/menu.inc
index b92c65e..44193b9 100644
--- a/plugins/destinations/menu.inc
+++ b/plugins/destinations/menu.inc
@@ -2,17 +2,13 @@
 
 /**
  * @file
- *  Support for migrating menus to {menu_custom}.
+ * Support for menu destinations.
  */
 
 /**
  * Destination class implementing migration into {menu_custom}.
  */
 class MigrateDestinationMenu extends MigrateDestination {
-  public function __construct() {
-    parent::__construct();
-  }
-
   static public function getKeySchema() {
     return array(
       'menu_name' => array(
@@ -25,6 +21,10 @@ class MigrateDestinationMenu extends MigrateDestination {
     );
   }
 
+  public function __construct() {
+    parent::__construct();
+  }
+
   public function __toString() {
     $output = t('Menu');
     return $output;
@@ -43,7 +43,7 @@ class MigrateDestinationMenu extends MigrateDestination {
    * Import a single row.
    *
    * @param $object
-   *  Object object to build. Prefilled with any fields mapped in the Migration.
+   *  Menu object to build. Prefilled with any fields mapped in the Migration.
    * @param $row
    *  Raw source data object - passed through to prepare/complete handlers.
    * @return array
diff --git a/plugins/destinations/menu_links.inc b/plugins/destinations/menu_links.inc
index 94aab5d..c21529e 100644
--- a/plugins/destinations/menu_links.inc
+++ b/plugins/destinations/menu_links.inc
@@ -2,7 +2,7 @@
 
 /**
  * @file
- *  Support for migrating links to {menu_links}.
+ * Support for menu link destinations.
  */
 
 /**
@@ -63,7 +63,7 @@ class MigrateDestinationMenuLinks extends MigrateDestination {
    * Import a single row.
    *
    * @param $object
-   *  Object object to build. Prefilled with any fields mapped in the Migration.
+   *  Menu link object to build. Prefilled with any fields mapped in the Migration.
    * @param $row
    *  Raw source data object - passed through to prepare/complete handlers.
    * @return array
@@ -82,7 +82,7 @@ class MigrateDestinationMenuLinks extends MigrateDestination {
     // @todo derive existing mlids?
     $this->prepare($object, $row);
 
-    // Menus are handled as arrays, so clone the object to an array.
+    // Menu links are handled as arrays, so clone the object to an array.
     $item = clone $object;
     $item = (array) $item;
 
