Skip to content

Commit 3ea5c8c

Browse files
author
Matthew Sackman
committed
Correct some dict() to dict:dictionary() that were missed.
1 parent 39e3bdf commit 3ea5c8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rabbit_invariable_queue.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
-type(state() :: #iv_state { queue :: queue(),
5353
qname :: rabbit_amqqueue:name(),
5454
len :: non_neg_integer(),
55-
pending_ack :: dict()
55+
pending_ack :: dict:dictionary()
5656
}).
5757
-include("rabbit_backing_queue_spec.hrl").
5858

src/rabbit_misc.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
-spec(recursive_delete/1 ::
168168
([file:filename()])
169169
-> rabbit_types:ok_or_error({file:filename(), any()})).
170-
-spec(dict_cons/3 :: (any(), any(), dict()) -> dict()).
170+
-spec(dict_cons/3 :: (any(), any(), dict:dictionary()) -> dict:dictionary()).
171171
-spec(unlink_and_capture_exit/1 :: (pid()) -> 'ok').
172172

173173
-endif.

0 commit comments

Comments
 (0)