From 41be48b5f6ba45d3f5e0632a3c373a52fbd2d32c Mon Sep 17 00:00:00 2001 From: Ginger Collison Date: Fri, 7 Jun 2019 10:45:10 -0500 Subject: [PATCH] Update pubsub.md --- developer/tutorials/pubsub.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/developer/tutorials/pubsub.md b/developer/tutorials/pubsub.md index 5a4e1f5..2dfdeec 100644 --- a/developer/tutorials/pubsub.md +++ b/developer/tutorials/pubsub.md @@ -15,7 +15,7 @@ digraph nats_pub_sub { pub1 sub1 non_active } - gnatsd [shape="box", label="NATS", width=8]; + natsserver [shape="box", label="NATS", width=8]; sub2 [shape="box", label="SUB\ncom.msg.one"]; sub3 [shape="box", label="SUB\ncom.msg.two"]; @@ -26,13 +26,13 @@ digraph nats_pub_sub { sub2 sub3 sub4 } - pub1 -> gnatsd [penwidth=2]; - gnatsd -> sub1 [penwidth=2]; - gnatsd -> non_active [style=dashed color=red arrowhead="none"]; + pub1 -> natsserver [penwidth=2]; + natsserver -> sub1 [penwidth=2]; + natsserver -> non_active [style=dashed color=red arrowhead="none"]; - gnatsd -> sub2 [penwidth=2]; - gnatsd -> sub3 [style=dashed color=red arrowhead="none"]; - gnatsd -> sub4 [penwidth=2]; + natsserver -> sub2 [penwidth=2]; + natsserver -> sub3 [style=dashed color=red arrowhead="none"]; + natsserver -> sub4 [penwidth=2]; }