From b10262d720efb318a987293e2aafc3f6c3008162 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Mon, 5 Mar 2012 20:37:22 -0800 Subject: [PATCH] whitespace --- src/jsx.erl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/jsx.erl b/src/jsx.erl index 0c6caee..22ed84a 100644 --- a/src/jsx.erl +++ b/src/jsx.erl @@ -48,6 +48,7 @@ to_json(Source, Opts) -> jsx_to_json:to_json(Source, Opts). %% old api, alias for to_json/x term_to_json(Source) -> to_json(Source, []). + term_to_json(Source, Opts) -> to_json(Source, Opts). @@ -69,6 +70,7 @@ to_term(Source, Opts) -> jsx_to_term:to_term(Source, Opts). %% old api, alias for to_term/x json_to_term(Source) -> to_term(Source, []). + json_to_term(Source, Opts) -> to_term(Source, Opts).