From ab97fc770e0b874078af1462144c563d03076cd8 Mon Sep 17 00:00:00 2001 From: SixDimensionalArray Date: Fri, 9 Aug 2013 12:27:58 -0700 Subject: [PATCH] Fixed a typo in the custom filter example (missing filter: object property). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a198541..6df944d 100644 --- a/README.md +++ b/README.md @@ -256,7 +256,7 @@ Alternately, if you'd just like to do everything yourself, you can specify a fil var demo = function(converter) { return [ // Replace escaped @ symbols - { type: 'lang', function(text) { + { type: 'lang', filter: function(text) { return text.replace(/\\@/g, '@'); }} ];