From b0844273c3928fae1a52794a436166399b080e75 Mon Sep 17 00:00:00 2001 From: alisdair sullivan Date: Wed, 14 Sep 2011 06:45:51 -0700 Subject: [PATCH] remove inactive opts from opts record --- include/jsx_types.hrl | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/include/jsx_types.hrl b/include/jsx_types.hrl index 92f703d..7d7b9fb 100644 --- a/include/jsx_types.hrl +++ b/include/jsx_types.hrl @@ -1,14 +1,6 @@ -type jsx_opts() :: [jsx_opt()]. --type jsx_opt() :: multi_term - | loose_unicode - | escape_forward_slashes - | {encoding, auto - | utf8 - | utf16 - | {utf16, little} - | utf32 - | {utf32, little} - }. +-type jsx_opt() :: loose_unicode + | escape_forward_slashes. -type jsx_event() :: start_object