From 4607a0d912d457aeec172b4e3f010bf08a323350 Mon Sep 17 00:00:00 2001 From: Gered King Date: Sun, 23 Mar 2014 12:05:45 -0400 Subject: [PATCH] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 93164c2..e3280a6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ If a variable's name has any special characters (such as a `-` character), you c instead. ```jinja -Customer name: {{customer['full-name'}} +Customer name: {{customer['full-name']}} ``` If a "root" variable has special characters in it's name, you can also access it using the same syntax, but you will @@ -83,7 +83,6 @@ For web apps built on Compojure, you can do something like: ```clojure (ns yourwebapp.views (:require [clj-jtwig.core :refer [render-resource]] - [clj-jtwig.functions :refer [deftwigfn]] [ring.util.response :refer [content-type response]] [compojure.response :refer [Renderable]]))