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/queue.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/queue.erl')
| -rw-r--r-- | lib/stdlib/src/queue.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/queue.erl b/lib/stdlib/src/queue.erl index 472d503b99..d2e6848258 100644 --- a/lib/stdlib/src/queue.erl +++ b/lib/stdlib/src/queue.erl @@ -48,7 +48,7 @@ -opaque queue(Item) :: {list(Item), list(Item)}. --opaque queue() :: queue(_). +-type queue() :: queue(_). %% Creation, inspection and conversion |
