diff --git a/docs/advanced/deploy-strategies.md b/docs/advanced/deploy-strategies.md index 0e8cc214..8421bd7e 100755 --- a/docs/advanced/deploy-strategies.md +++ b/docs/advanced/deploy-strategies.md @@ -5,7 +5,7 @@ In most cases you don't need more than one production server. It's better to build your release files (as cache, js/css bundles) on that machine as well. So your builds don't depend on your local configuration and can be deployed from everywhere. -By default Deployer recipes are designed to fullfill these kind of deployments. +By default Deployer recipes are designed to fulfill these kind of deployments. ~~~php desc('Deploy your project'); diff --git a/docs/tasks.md b/docs/tasks.md index 7a28d763..61fca796 100755 --- a/docs/tasks.md +++ b/docs/tasks.md @@ -204,7 +204,7 @@ To speedup deployment add the `--parallel` or `-p` option. This will run tasks i task 2task 2task 2task 2task 1task 1task 1task 1Host 4Host 3Host 2Host 1 -Limit the number of concurrent tasks by specifing a number. By default, up to 10 tasks will be processed concurrently. +Limit the number of concurrent tasks by specifying a number. By default, up to 10 tasks will be processed concurrently. ```sh dep deploy --parallel --limit 2 diff --git a/recipe/drupal7.php b/recipe/drupal7.php index 6a4d55ad..9bf3bef4 100644 --- a/recipe/drupal7.php +++ b/recipe/drupal7.php @@ -72,7 +72,7 @@ task('drupal:settings', function () { $settings = strtr($settings, $replacements); - writeln('settings.php created succesfuly'); + writeln('settings.php created successfully'); $tmpFilename = tempnam(sys_get_temp_dir(), 'tmp_settings_'); file_put_contents($tmpFilename, $settings);