From 913b6449f2a96459c964aef871567ee51c967720 Mon Sep 17 00:00:00 2001 From: Ashley MacWhirter Date: Mon, 11 Feb 2019 10:23:01 -0500 Subject: [PATCH] Update index.md Close query object in FHIR Search Parameters example. --- clients/javascript/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/javascript/index.md b/clients/javascript/index.md index b7915ca..97b3665 100644 --- a/clients/javascript/index.md +++ b/clients/javascript/index.md @@ -105,7 +105,7 @@ documentation page. Let's say that we'd like to find all patients that have how we can do this using the SMART on FHIR JS client: ``` -smart.api.search({type: "Patient", query: {given: ["John", "Bob"], family: "Smith"}) +smart.api.search({type: "Patient", query: {given: ["John", "Bob"], family: "Smith"}}) ``` Please see the [fhir.js documentation](https://github.com/FHIR/fhir.js) for further