From d4fe3181cc2976482babdeca2b93438a7ad32d66 Mon Sep 17 00:00:00 2001 From: kfabryczny Date: Wed, 23 Dec 2020 12:10:35 +0100 Subject: [PATCH] Shift comma --- developing-with-nats/receiving/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developing-with-nats/receiving/README.md b/developing-with-nats/receiving/README.md index 875a419..d35f825 100644 --- a/developing-with-nats/receiving/README.md +++ b/developing-with-nats/receiving/README.md @@ -6,5 +6,5 @@ Some languages, like Go or Java, provide synchronous and asynchronous APIs, whil In all cases, the process of subscribing involves having the client library tell the NATS system that an application is interested in a particular subject. When an application is done with a subscription it unsubscribes telling the server to stop sending messages. -A client will receive a message for each matching subscription ,so if a connection has multiple subscriptions using identical or overlapping subjects \(say `foo` and `>`\) the same message will be sent to the client multiple times. +A client will receive a message for each matching subscription, so if a connection has multiple subscriptions using identical or overlapping subjects \(say `foo` and `>`\) the same message will be sent to the client multiple times.