diff --git a/vimrc.drush.inc b/vimrc.drush.inc index 853f89d..f98b4ef 100644 --- a/vimrc.drush.inc +++ b/vimrc.drush.inc @@ -64,7 +64,7 @@ function drush_vimrc_install_validate() { $error = ''; // This works only if $vim is a full path. // if (!is_executable($vim)) { - // $error = dt('The command %vim is not executable.', array('%vim' => $vim)); + // $error = dt('The command %vim is not executable.', array('%vim' => $vim)); // } // else { $success = drush_shell_exec('%s --version', $vim); @@ -438,7 +438,7 @@ function vimrc_download_plugins($vim, $vimrc, $bundle, $update = FALSE, array $p continue; } $tempdir = drush_tempdir(); - // See http://drupal.org/node/1642444#comment-6742834. + // @See http://drupal.org/node/1642444#comment-6742834. if (!$path = _vimrc_download_file($info['tarball'], "$tempdir/$tarball")) { drush_log(dt('Failed to download %plugin from @uri.', array( '%plugin' => $info['name'], @@ -467,7 +467,9 @@ function vimrc_download_plugins($vim, $vimrc, $bundle, $update = FALSE, array $p } /** - * Poor substitute for _drush_download_file(), add --no-check-certificate. See http://drupal.org/node/1642444#comment-6742834. + * Poor substitute for _drush_download_file(), add --no-check-certificate. + * + * @See http://drupal.org/node/1642444#comment-6742834. */ function _vimrc_download_file($url, $destination, $overwrite = TRUE) { static $use_wget;