Skip to content

Commit a1b4995

Browse files
committed
TUTORIAL.md: Fix typo.
1 parent 5cc34b3 commit a1b4995

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

v3/docs/TUTORIAL.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2059,7 +2059,10 @@ async def main():
20592059

20602060
asyncio.run(main())
20612061
```
2062-
The `.readline` method will pause until `\n` is received. The `.read`
2062+
The `.readline` method will pause until `\n` is received.
2063+
2064+
###### StreamWriter write methods
2065+
20632066
Writing to a `StreamWriter` occurs in two stages. The synchronous `.write`
20642067
method concatenates data for later transmission. The asynchronous `.drain`
20652068
causes transmission. To avoid allocation call `.drain` after each call to

0 commit comments

Comments
 (0)