1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Merge pull request #1560 from mattbrictson/readme-typos

Fix a couple README typos
This commit is contained in:
Lee Hambley 2016-01-17 22:20:21 +01:00
commit 9168947002

View file

@ -17,7 +17,7 @@ When you run `cap`, Capistrano dutifully connects to your server(s) via SSH and
Tasks are simple to make. Here's an example:
```ruby
task :restart_sidekiq
task :restart_sidekiq do
on roles(:worker) do
execute :service, "sidekiq restart"
end