From 6e85c69a44db26d1510f7f9117cccfd77df8904a Mon Sep 17 00:00:00 2001 From: Tien Date: Sat, 26 Oct 2019 22:50:48 +0700 Subject: [PATCH] Fix %x typo in local tasks example (#2040) --- docs/documentation/getting-started/local-tasks/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```