Skip to content

Commit 0fc3746

Browse files
Apply suggestions from code review
Fix comment typos Co-authored-by: Nate Prewitt <[email protected]>
1 parent af7affd commit 0fc3746

File tree

1 file changed

+2
-2
lines changed
  • python-packages/smithy-event-stream/smithy_event_stream/aio

1 file changed

+2
-2
lines changed

python-packages/smithy-event-stream/smithy_event_stream/aio/interfaces.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async def __aexit__(self, exc_type: Any, exc_value: Any, traceback: Any):
3333
class OutputEventStream[E: DeserializeableShape](Protocol):
3434
"""Asynchronously receives events from a service.
3535
36-
Events may be recived via the ``receive`` method or by using this class as
36+
Events may be received via the ``receive`` method or by using this class as
3737
an async iterable.
3838
3939
This may also be used as a context manager to ensure the stream is closed before
@@ -131,7 +131,7 @@ async def await_output(self) -> tuple[R, O]:
131131
"""Await the operation's output.
132132
133133
The EventStream will be returned as soon as the input stream is ready to
134-
receive events, which may be before the intitial response has been received
134+
receive events, which may be before the initial response has been received
135135
and the service is ready to send events.
136136
137137
Awaiting this method will wait until the initial response was received and the

0 commit comments

Comments
 (0)