From 8ec9090b62ba8160c5d6ca895fce7266dfc2a161 Mon Sep 17 00:00:00 2001 From: Rostislav Katin Date: Mon, 9 Oct 2017 09:09:00 +0300 Subject: [PATCH] Update property filtering docs Fix the syntax error --- .../advanced-features/property-filtering/index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/advanced-features/property-filtering/index.markdown b/docs/documentation/advanced-features/property-filtering/index.markdown index 85bdd331..ffebfb04 100644 --- a/docs/documentation/advanced-features/property-filtering/index.markdown +++ b/docs/documentation/advanced-features/property-filtering/index.markdown @@ -26,7 +26,7 @@ server 'example1.com', roles: %w{web}, active: true server 'example2.com', roles: %w{web} server 'example3.com', roles: %w{app web}, active: true server 'example4.com', roles: %w{app}, primary: true -server 'example5.com', roles: %w{db}, no_release: true, active:true +server 'example5.com', roles: %w{db}, no_release: true, active: true task :demo do puts "All active release roles: 1,3"