From 77ad084229d9355d009b52d4bfd2cfdf4af373b5 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Wed, 23 Mar 2016 14:33:20 -0700 Subject: [PATCH] Fixes JSON in wildcard query example. --- .../docs/agent/http/query.html.markdown | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/website/source/docs/agent/http/query.html.markdown b/website/source/docs/agent/http/query.html.markdown index b09801ff20..bad3ae1288 100644 --- a/website/source/docs/agent/http/query.html.markdown +++ b/website/source/docs/agent/http/query.html.markdown @@ -240,16 +240,16 @@ applies a failover policy to it: ```javascript { - "Name": "", - "Template" { - "Type": "name_prefix_match", - }, - "Service": { - "Service": "${name.full}", - "Failover": { - "NearestN": 3, - } - } + "Name": "", + "Template": { + "Type": "name_prefix_match" + }, + "Service": { + "Service": "${name.full}", + "Failover": { + "NearestN": 3 + } + } } ```