diff --git a/docs/documentation/getting-started/local-tasks/index.markdown b/docs/documentation/getting-started/local-tasks/index.markdown index c21c680d..911eb261 100644 --- a/docs/documentation/getting-started/local-tasks/index.markdown +++ b/docs/documentation/getting-started/local-tasks/index.markdown @@ -21,7 +21,7 @@ Of course, you can always just use standard ruby syntax to run things locally: ```ruby desc 'Notify service of deployment' task :notify do - %x('RAILS_ENV=development bundle exec rake "service:notify"') + %x(RAILS_ENV=development bundle exec rake "service:notify") end ```