From 33ab76be13d37e605c9572d6814357ee72641113 Mon Sep 17 00:00:00 2001 From: Derek Smith Date: Wed, 17 Jun 2026 11:01:40 -0600 Subject: [PATCH] Fix typo in gossip tutorial --- src/app/docs/examples/gossip-chat/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/docs/examples/gossip-chat/page.mdx b/src/app/docs/examples/gossip-chat/page.mdx index 4e70afc1..7fbb16b4 100644 --- a/src/app/docs/examples/gossip-chat/page.mdx +++ b/src/app/docs/examples/gossip-chat/page.mdx @@ -504,7 +504,7 @@ Now, when you run your code, you should see something like this: ## Creating a Command-Line Interface -Here is where things get fun. We know how to create, join, and send and receive on a `Topic`. We also know how to get other to join that `Topic`. This has now created two different "roles" an endpoint can have: a topic "creator" and a topic "joiner". One side "creates" the topic and the ticket, and the other side takes the ticket and uses it to join the topic and connect to the ticket creator. +Here is where things get fun. We know how to create, join, and send and receive on a `Topic`. We also know how to get others to join that `Topic`. This has now created two different "roles" an endpoint can have: a topic "creator" and a topic "joiner". One side "creates" the topic and the ticket, and the other side takes the ticket and uses it to join the topic and connect to the ticket creator. To "join", we will need to pass in a `Ticket` as a command line argument. There is a great rust crate called `clap` that takes care of much of the CLI boiler plate for you.