diff options
author | Loïc Hoguin <[email protected]> | 2011-04-18 12:14:13 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-04-18 12:14:13 +0200 |
commit | ef2673b61eb640768c8e83c5c6847b50255b07a6 (patch) | |
tree | d97ea3af8f95e75dd061ed170080f9a24671000d /include | |
parent | ecf117b37508f864d084ed6560f95e32b9ede1ef (diff) | |
download | cowboy-ef2673b61eb640768c8e83c5c6847b50255b07a6.tar.gz cowboy-ef2673b61eb640768c8e83c5c6847b50255b07a6.tar.bz2 cowboy-ef2673b61eb640768c8e83c5c6847b50255b07a6.zip |
Rename dispatch() into dispatch_rules().
Diffstat (limited to 'include')
-rw-r--r-- | include/types.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/types.hrl b/include/types.hrl index d250f69..8bb94fb 100644 --- a/include/types.hrl +++ b/include/types.hrl @@ -24,4 +24,4 @@ -type dispatch_rule() :: {Host::match(), list({Path::match(), Handler::module(), Opts::term()})}. --type dispatch() :: list(dispatch_rule()). +-type dispatch_rules() :: list(dispatch_rule()). |