From 52ddbefe1dabd42bca8e227164ef3014f5160a88 Mon Sep 17 00:00:00 2001 From: gered Date: Sat, 1 Mar 2014 11:32:14 -0500 Subject: [PATCH] change options parameter --- src/clj_jtwig/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj_jtwig/core.clj b/src/clj_jtwig/core.clj index 228bd91..d1d8cb7 100644 --- a/src/clj_jtwig/core.clj +++ b/src/clj_jtwig/core.clj @@ -5,7 +5,7 @@ (defn render "renders a template contained in the provided string, using the values in model-map as the model for the template." - [s model-map & [{:keys [skip-model-map-stringify?] :as options}]] + [s model-map & {:keys [skip-model-map-stringify?] :as options}] (let [template (new JtwigTemplate s) context (new JtwigContext)] (doseq [[k v] (if-not skip-model-map-stringify?