diff --git a/commands/pm/download.pm.inc b/commands/pm/download.pm.inc
index 218ffd8..236c940 100644
--- a/commands/pm/download.pm.inc
+++ b/commands/pm/download.pm.inc
@@ -31,7 +31,7 @@ function drush_pm_download_validate() {
   // Validate --variant or enforce a sane default.
   $variant = drush_get_option('variant', FALSE);
   if ($variant) {
-    if (!in_array($variant, array('core', 'no-core', 'make'))) {
+    if (!in_array($variant, array('full', 'projects', 'profile-only'))) {
       drush_log(dt('Unknown variant !variant. Valid values: !variations', array('!variant' => $variant, '!variations' => implode(', ', $variations))), 'error');
     }
   }
diff --git a/commands/pm/package_handler/wget.inc b/commands/pm/package_handler/wget.inc
index e3a8da5..393405c 100644
--- a/commands/pm/package_handler/wget.inc
+++ b/commands/pm/package_handler/wget.inc
@@ -33,7 +33,7 @@ function package_handler_validate() {
  * @param $release The release details array from drupal.org.
  */
 function package_handler_download_project(&$request, $release) {
-  // Install profiles come in 3 variants. User may specify which one she wants.
+  // Install profiles come in several variants. User may specify which one she wants.
   if ($request['project_type'] == 'profile') {
     // @todo Use xpath to get the right file url.
     $files = $release['files'];
