diff options
author | Anders Svensson <[email protected]> | 2013-10-02 14:58:26 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2013-12-01 16:38:52 +0100 |
commit | 350e7e93696c4a2f553a64232b5a52f256b5c0e7 (patch) | |
tree | 8864f34ca030483f617a03fb5f197972964c188a /lib | |
parent | 8e819a7960a256b6c3b7bf5856c3f81b8df9ca7e (diff) | |
download | otp-350e7e93696c4a2f553a64232b5a52f256b5c0e7.tar.gz otp-350e7e93696c4a2f553a64232b5a52f256b5c0e7.tar.bz2 otp-350e7e93696c4a2f553a64232b5a52f256b5c0e7.zip |
Modify type that currently causes dialyzer woe
The intention was that the type would represent an improper list whose
head was an integer and whose tail was an orddict but that doesn't seem
to be dialyzer's interpretation anyway.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/diameter/src/compiler/diameter_make.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diameter/src/compiler/diameter_make.erl b/lib/diameter/src/compiler/diameter_make.erl index bf337544a6..411d71ba3b 100644 --- a/lib/diameter/src/compiler/diameter_make.erl +++ b/lib/diameter/src/compiler/diameter_make.erl @@ -50,7 +50,7 @@ | hrl. %% Internal parsed format with a version tag. --type parsed() :: maybe_improper_list(integer(), orddict:orddict()). +-type parsed() :: list(). %% Literal dictionary or path. A NL of CR identifies the former. -type dict() :: iolist() |