From a7e0e34d9ba79e1e715c4bfe323a2d505c306589 Mon Sep 17 00:00:00 2001 From: Nelson Darkwah Oppong Date: Thu, 20 Nov 2014 14:44:25 +0100 Subject: [PATCH] Fix typo in README.md Fix typo in filter code example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 450a028..139e0df 100644 --- a/README.md +++ b/README.md @@ -244,7 +244,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, '@'); }} ];