Skip to content

Commit

Permalink
Correct spelling errors in WraithCommand.php
Browse files Browse the repository at this point in the history
  • Loading branch information
uberhacker committed Apr 23, 2017
1 parent 293f216 commit d866de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/WraithCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class WraithCommand extends TerminusCommand implements SiteAwareInterface
* @option array $sites A comma separated list of site environments to compare in `site-name.env` format. Example: my-site.test,my-site.prod
* @option array $paths A comma separated list of name=value relative paths to compare. Example: home=/,about=/about,news=/news,etc.
* @option bool $config Enable configuration mode
* @option bool $spider Craw to detect pages
* @option bool $spider Crawl to detect pages
*
* @usage [--sites site-name.test,site-name.prod --paths home=/,about=/about,news=/news,... --config --spider]
* Generate snapshots to visually compare various pages of different site environments.
Expand Down Expand Up @@ -129,7 +129,7 @@ public function wraith($options = ['sites' => [], 'paths' => [], 'config' => fal
$this->putYaml($capture_file, $capture_data);
}

// Craw to detect pages.
// Crawl to detect pages.
if ($options['spider']) {
$capture_data = $this->getYaml($capture_file);
if (isset($capture_data['paths'])) {
Expand Down

0 comments on commit d866de8

Please sign in to comment.