From 8e7e30428ea36b5506497cc2fb3ab9642aa0af08 Mon Sep 17 00:00:00 2001 From: zhongwencool Date: Sun, 17 Oct 2021 23:06:57 +0800 Subject: [PATCH] fix: add include_dirs to opts() --- src/hocon.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hocon.erl b/src/hocon.erl index 0017f14..8b9fa4f 100644 --- a/src/hocon.erl +++ b/src/hocon.erl @@ -31,7 +31,7 @@ -type convert() :: duration | bytesize | percent | onoff | convert_func(). -type convert_func() :: fun((term()) -> term()). -type opts() :: #{format => map | proplists | richmap, - convert => [convert()]}. + convert => [convert()], include_dirs => [file:filename_all()]}. -export_type([config/0, ctx/0]).