From b56735c01a732c8a2bf1d7b60fc5e31396c3dede Mon Sep 17 00:00:00 2001 From: gered Date: Wed, 6 Aug 2014 08:57:52 -0400 Subject: [PATCH] add missing doc comment --- src/clj_hl7_fhir/core.clj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/clj_hl7_fhir/core.clj b/src/clj_hl7_fhir/core.clj index be0a98a..45f5261 100644 --- a/src/clj_hl7_fhir/core.clj +++ b/src/clj_hl7_fhir/core.clj @@ -366,6 +366,8 @@ (apply join-paths uri-components)))) (defn deleted? + "checks if a resource has been deleted or not. this is based on FHIR servers returning + an HTTP 410 response when trying to retrieve a resource that has been deleted." [base-url type id] (let [resource-name (->fhir-resource-name type) url-components ["/" resource-name id]