From 439f934ebb5991cdc85475b7c9ea99a4057e9917 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Fri, 6 Apr 2012 09:13:42 -0700 Subject: [PATCH] readme typo --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 06fb879..51fb723 100644 --- a/README.markdown +++ b/README.markdown @@ -247,7 +247,7 @@ the option `labels` controls how keys are converted from json to erlang terms. ` ```erlang 1> F = fun(V) when is_list(V) -> V; (V) -> false end. - 2> jsx:to_term(<<"{"a list": [true, "a string", 1]}">>, [{post_decode, F}]). + 2> jsx:to_term(<<"{\"a list\": [true, \"a string\", 1]}">>, [{post_decode, F}]). [{<<"a list">>, [false, false, false]}] ```