Skip to content

Commit

Permalink
docs: missing colon in example
Browse files Browse the repository at this point in the history
  • Loading branch information
zhudotexe committed Apr 11, 2024
1 parent d4fcf9e commit 695fd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/kani.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ The simplest way to consume the stream is to iterate over it with ``async for``,
msg = await stream.message()
# FULL ROUND:
async for stream in ai.full_round_stream("What is the airspeed velocity of an unladen swallow?")
async for stream in ai.full_round_stream("What is the airspeed velocity of an unladen swallow?"):
async for token in stream:
print(token, end="")
msg = await stream.message()
Expand Down

0 comments on commit 695fd85

Please sign in to comment.