remove jsx_verify.hrl, move opts record to main body

This commit is contained in:
alisdair sullivan 2011-08-10 22:52:00 -07:00
parent 0624321347
commit c56cf7c00b
2 changed files with 6 additions and 29 deletions

View file

@ -26,7 +26,12 @@
-export([is_json/2]).
-include("jsx_common.hrl").
-include("jsx_verify.hrl").
-record(verify_opts, {
repeated_keys = true,
naked_values = true
}).
-spec is_json(JSON::binary(), Opts::verify_opts()) -> true | false