diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2010-11-06 12:15:25 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2010-11-06 12:15:25 +0000 |
| commit | 59f6941d23e2c8baa1d798652fade93465ab2b6e (patch) | |
| tree | f1461afe7bcd821ee7106c130962240e2ec1a599 | |
| parent | ef97e11af788adeb54267c0dd6347cf35c295a8b (diff) | |
| download | rabbitmq-server-git-59f6941d23e2c8baa1d798652fade93465ab2b6e.tar.gz | |
correct orddict type
this doesn't actually work yet since the type isn't exported, but that
will be fixed in a future OTP release.
| -rw-r--r-- | src/rabbit_misc.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit_misc.erl b/src/rabbit_misc.erl index 60d7c7440c..2de4cff942 100644 --- a/src/rabbit_misc.erl +++ b/src/rabbit_misc.erl @@ -179,8 +179,7 @@ ([file:filename()]) -> rabbit_types:ok_or_error({file:filename(), any()})). -spec(dict_cons/3 :: (any(), any(), dict()) -> dict()). --spec(orddict_cons/3 :: (any(), any(), orddict:dictionary()) -> - orddict:dictionary()). +-spec(orddict_cons/3 :: (any(), any(), orddict:orddict()) -> orddict:orddict()). -spec(unlink_and_capture_exit/1 :: (pid()) -> 'ok'). -spec(get_options/2 :: ([optdef()], [string()]) -> {[string()], [{string(), any()}]}). |
