summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2010-07-02 15:18:31 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2010-07-02 15:18:31 +0100
commit52af3d70e77a3ab84c7d22e01d324f5dba5c2005 (patch)
tree22a41d788a22bba36d1aef9904c83b1fdf174316 /src
parentd39aff8867bb26ec690bad6b06430dceddcfdc53 (diff)
downloadrabbitmq-server-git-52af3d70e77a3ab84c7d22e01d324f5dba5c2005.tar.gz
updated dict() to dict:dictionary()
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_invariable_queue.erl2
-rw-r--r--src/rabbit_misc.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_invariable_queue.erl b/src/rabbit_invariable_queue.erl
index d3f89ab96f..df8adb2e2f 100644
--- a/src/rabbit_invariable_queue.erl
+++ b/src/rabbit_invariable_queue.erl
@@ -52,7 +52,7 @@
-type(state() :: #iv_state { queue :: queue(),
qname :: rabbit_amqqueue:name(),
len :: non_neg_integer(),
- pending_ack :: dict()
+ pending_ack :: dict:dictionary()
}).
-include("rabbit_backing_queue_spec.hrl").
diff --git a/src/rabbit_misc.erl b/src/rabbit_misc.erl
index 1e05c61c46..92ca6c0a1c 100644
--- a/src/rabbit_misc.erl
+++ b/src/rabbit_misc.erl
@@ -156,7 +156,7 @@
('lt' | 'lte' | 'eq' | 'gte' | 'gt')) -> boolean()).
-spec(recursive_delete/1 :: ([file:filename()]) ->
'ok' | {'error', {file:filename(), any()}}).
--spec(dict_cons/3 :: (any(), any(), dict()) -> dict()).
+-spec(dict_cons/3 :: (any(), any(), dict:dictionary()) -> dict:dictionary()).
-spec(unlink_and_capture_exit/1 :: (pid()) -> 'ok').
-endif.