From 1c6ac924c5365771ca068af774dc0f19dd73d31e Mon Sep 17 00:00:00 2001 From: Renee Margaret McConahy Date: Wed, 8 Jan 2020 16:42:42 -0500 Subject: [PATCH] Ansible docs: Fix misplaced brace in example. --- website/source/docs/provisioning/ansible_common.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/provisioning/ansible_common.html.md b/website/source/docs/provisioning/ansible_common.html.md index dd95e3b56..3bfc71e34 100644 --- a/website/source/docs/provisioning/ansible_common.html.md +++ b/website/source/docs/provisioning/ansible_common.html.md @@ -126,8 +126,8 @@ Some of these options are for advanced usage only and should not be used unless ```ruby ansible.host_vars = { "host1" => {"http_port" => 80, - "maxRequestsPerChild" => 808}, - "comments" => "text with spaces", + "maxRequestsPerChild" => 808, + "comments" => "text with spaces"}, "host2" => {"http_port" => 303, "maxRequestsPerChild" => 909} }