summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-07-07 13:06:09 +0100
committerMatthew Sackman <matthew@rabbitmq.com>2010-07-07 13:06:09 +0100
commit3ea5c8c70fd111854e149e4e477c37a2871fb9e8 (patch)
tree8044df30eb60ae2258a71ec259d84c42030b7763
parent39e3bdf997ac271c30797504624ffcccae3a6796 (diff)
downloadrabbitmq-server-git-3ea5c8c70fd111854e149e4e477c37a2871fb9e8.tar.gz
Correct some dict() to dict:dictionary() that were missed.
-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 dd85d1e44c..f04df8a042 100644
--- a/src/rabbit_misc.erl
+++ b/src/rabbit_misc.erl
@@ -167,7 +167,7 @@
-spec(recursive_delete/1 ::
([file:filename()])
-> rabbit_types:ok_or_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.