typo in comment

This commit is contained in:
Paul Yuknewicz 2022-02-07 11:02:20 -08:00 committed by Artur Souza
parent 3fc90fcbdc
commit 4f33c01b9d
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ const SERVER_PORT = process.env.SERVER_PORT || 5001;
async function main() {
const server = new DaprServer(SERVER_HOST, SERVER_PORT, DAPR_HOST, DAPR_HTTP_PORT);
// ßDapr subscription routes orders topic to this route
// Dapr subscription routes orders topic to this route
server.pubsub.subscribe("order_pub_sub", "orders", (data) => {
console.log("Subscriber received : " + JSON.stringify(data))
});