From 318b514b4769cefcc3de97a2548f92e68e36c037 Mon Sep 17 00:00:00 2001 From: Ginger Collison Date: Fri, 4 Oct 2019 11:24:55 -0500 Subject: [PATCH] Update pubsub.md --- developer/concepts/pubsub.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/concepts/pubsub.md b/developer/concepts/pubsub.md index 1cc9c2a..b5d620c 100644 --- a/developer/concepts/pubsub.md +++ b/developer/concepts/pubsub.md @@ -2,6 +2,6 @@ NATS implements a publish-subscribe message distribution model for one-to-many communication. A publisher sends a message on a subject and any active subscriber listening on that subject receives the message. Subscribers can also register interest in wildcard subjects that work a bit like a regular expression (but only a bit). This one-to-many pattern is sometimes called fan-out. -![pubsub](/assets/images/pubsub.svg) +![](/assets/images/pubsub.svg) Try NATS publish subscribe on your own, using a live server by walking through the [pub-sub tutorial](../tutorials/pubsub.md).