diff options
author | Hans Bolinder <[email protected]> | 2015-06-15 13:05:06 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-06-15 13:05:06 +0200 |
commit | 56e3ade9d8396cba5508b0de557a1bd574c37b69 (patch) | |
tree | 3df65950661a78026aa2334fd26dd5ff75382942 /lib/stdlib/src/dict.erl | |
parent | 26ed9f0e4a23985b7a0fbf7d9a38142edaf5c1aa (diff) | |
parent | d65264ca24c966402876aa6f9127be8810310255 (diff) | |
download | otp-56e3ade9d8396cba5508b0de557a1bd574c37b69.tar.gz otp-56e3ade9d8396cba5508b0de557a1bd574c37b69.tar.bz2 otp-56e3ade9d8396cba5508b0de557a1bd574c37b69.zip |
Merge branch 'hb/dialyzer/fix_opaque_types/OTP-12493'
* hb/dialyzer/fix_opaque_types/OTP-12493:
dialyzer: Fix a minor bug concerning opaque types
dialyzer: Modify warning for comparison of opaque types
dialyzer: Modify the handling of parametrized opaque types
Diffstat (limited to 'lib/stdlib/src/dict.erl')
-rw-r--r-- | lib/stdlib/src/dict.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/dict.erl b/lib/stdlib/src/dict.erl index 5a9f63c5e2..d2af9554a1 100644 --- a/lib/stdlib/src/dict.erl +++ b/lib/stdlib/src/dict.erl @@ -70,7 +70,7 @@ }). --opaque dict() :: dict(_, _). +-type dict() :: dict(_, _). -opaque dict(Key, Value) :: #dict{segs :: segs(Key, Value)}. |