Skip to content

Commit 549ba06

Browse files
jiridanekkornys
authored andcommitted
Fix typo in first_acquirer in Formatter.cs (#10)
Fixes #9
1 parent 29c7e72 commit 549ba06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dotNet/ClientLib/Formatter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static void PrintMessageAsDict(Message msg, bool hashContent)
6767
msgDict.Add("ttl", msg.Header.Ttl);
6868
msgDict.Add("delivery_count", msg.Header.DeliveryCount);
6969
msgDict.Add("priority", (uint)msg.Header.Priority);
70-
msgDict.Add("first_aquirer", msg.Header.FirstAcquirer);
70+
msgDict.Add("first_acquirer", msg.Header.FirstAcquirer);
7171
msgDict.Add("id", msg.Properties.MessageId);
7272
msgDict.Add("reply_to", msg.Properties.ReplyTo);
7373
msgDict.Add("subject", msg.Properties.Subject);
@@ -98,7 +98,7 @@ public static void PrintMessageAsInterop(Message msg, bool hashContent)
9898
msgDict.Add("ttl", msg.Header.Ttl);
9999
msgDict.Add("delivery-count", msg.Header.DeliveryCount);
100100
msgDict.Add("priority", (uint)msg.Header.Priority);
101-
msgDict.Add("first-aquirer", msg.Header.FirstAcquirer);
101+
msgDict.Add("first-acquirer", msg.Header.FirstAcquirer);
102102
msgDict.Add("id", RemoveIDPrefix(msg.Properties.MessageId));
103103
msgDict.Add("to", msg.Properties.To);
104104
msgDict.Add("address", msg.Properties.To);
@@ -131,7 +131,7 @@ public static void PrintMessageAsJson(Message msg, bool hashContent)
131131
msgDict.Add("ttl", msg.Header.Ttl);
132132
msgDict.Add("delivery-count", msg.Header.DeliveryCount);
133133
msgDict.Add("priority", (uint)msg.Header.Priority);
134-
msgDict.Add("first-aquirer", msg.Header.FirstAcquirer);
134+
msgDict.Add("first-acquirer", msg.Header.FirstAcquirer);
135135
msgDict.Add("id", RemoveIDPrefix(msg.Properties.MessageId));
136136
msgDict.Add("to", msg.Properties.To);
137137
msgDict.Add("address", msg.Properties.To);

0 commit comments

Comments
 (0)