From 30d8bbc8f8b9a464aa8f47d80306bb365c3c9fc2 Mon Sep 17 00:00:00 2001 From: Ginger Collison Date: Thu, 6 Feb 2020 12:05:20 -0600 Subject: [PATCH] Update wildcards.md --- developing-with-nats/receiving/wildcards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developing-with-nats/receiving/wildcards.md b/developing-with-nats/receiving/wildcards.md index e0556fa..6bd18ca 100644 --- a/developing-with-nats/receiving/wildcards.md +++ b/developing-with-nats/receiving/wildcards.md @@ -1,6 +1,6 @@ # Wildcard Subscriptions -There is no special code to subscribe with a [wildcard subject](../../nats-concepts/subjects.md#wildcards). Wildcards are a normal part of the subject name. However, it is a common technique to use use the subject provided with the incoming message to determine what to do with the message. +There is no special code to subscribe with a [wildcard subject](../../nats-concepts/subjects.md#wildcards). Wildcards are a normal part of the subject name. However, it is a common technique to use the subject provided with the incoming message to determine what to do with the message. For example, you can subscribe using `*` and then act based on the actual subject.