From a46d25129a9c0a5914d73b3bd29d45a9659db620 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Wed, 23 May 2012 22:46:17 -0700 Subject: [PATCH] fix typo in README example --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 750c566..677ee4a 100644 --- a/README.markdown +++ b/README.markdown @@ -381,7 +381,7 @@ encode(Term, Opts) -> JSON ```erlang 1> F = fun(V) when is_list(V) -> V; (V) -> false end. -2> jsx:encode([{<<"a list">>, [true, <<"a string">>, 1]}], [{pre_encode, F}]. +2> jsx:encode([{<<"a list">>, [true, <<"a string">>, 1]}], [{pre_encode, F}]). <<"{\"a list\": [false, false, false]}">> ```