summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVlad Ionescu <vlad@lshift.net>2009-09-22 13:45:10 +0100
committerVlad Ionescu <vlad@lshift.net>2009-09-22 13:45:10 +0100
commitf83fd775aa396088172cf9641f14fb8f3b39e32b (patch)
tree24118fba75cdeb9b5f5619715441c42c12a168f7 /include
parent11a829e5e72de0ac766ecbcf3ede2ef4a0307cd6 (diff)
downloadrabbitmq-server-git-f83fd775aa396088172cf9641f14fb8f3b39e32b.tar.gz
renaming expl to explanation in #amqp_error{}
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 84a1d4f754..c95ce73836 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -67,7 +67,7 @@
-record(ssl_socket, {tcp, ssl}).
-record(delivery, {mandatory, immediate, txn, sender, message}).
--record(amqp_error, {name, expl, method = none}).
+-record(amqp_error, {name, explanation, method = none}).
%%----------------------------------------------------------------------------
@@ -157,9 +157,9 @@
-type(not_found() :: {'error', 'not_found'}).
-type(routing_result() :: 'routed' | 'unroutable' | 'not_delivered').
-type(amqp_error() ::
- #amqp_error{name :: atom(),
- expl :: string(),
- method :: atom()}).
+ #amqp_error{name :: atom(),
+ explanation :: string(),
+ method :: atom()}).
-endif.
%%----------------------------------------------------------------------------