diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/types.hrl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/types.hrl b/include/types.hrl index 17882cc..1940a14 100644 --- a/include/types.hrl +++ b/include/types.hrl @@ -25,8 +25,8 @@ -type port_number() :: 0..65535. -type bindings() :: list({Key::atom(), Value::string()}). --type path_tokens() :: list(string()). --type match() :: '_' | list(string() | '_' | atom()). +-type path_tokens() :: '*' | list(string()). +-type match() :: '_' | '*' | list(string() | '_' | atom()). -type dispatch_rules() :: {Host::match(), list({Path::match(), Handler::module(), Opts::term()})}. |