From d570b6f37fdaddf3962252b74f4a149aaf8fda7d Mon Sep 17 00:00:00 2001 From: thecaptain789 Date: Mon, 9 Feb 2026 23:25:30 +0000 Subject: [PATCH] docs: correct typo 'recieve' to 'receive' in streaming tutorial This fixes a typo in the async generator comment in the streaming tutorial documentation. The word 'recieve' was misspelled as 'receive' in line 99 of docs/stream_tutorial/README.md. The fix benefits all forks of the official Bittensor subnet template. --- docs/stream_tutorial/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/stream_tutorial/README.md b/docs/stream_tutorial/README.md index f213fd3af..3afbbe58a 100644 --- a/docs/stream_tutorial/README.md +++ b/docs/stream_tutorial/README.md @@ -96,7 +96,7 @@ class MyStreamingSynapse(bt.StreamingSynapse): return self.completion # implement your `process_streaming_response` logic to actually yield objects to the streamer - # this effectively defines the async generator that you'll recieve on the client side + # this effectively defines the async generator that you'll receive on the client side async def process_streaming_response(self, response: MyStreamingSynapse): # this is an example of how you might process a streaming response # iterate over the response content and yield each line