Skip to content

Commit fa45bc8

Browse files
committed
Fix docstring (addresses a spell-checker error)
1 parent 109488c commit fa45bc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/a2a/utils/error_handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async def wrapper(*args: Any, **kwargs: Any) -> Response:
9292
def rest_stream_error_handler(
9393
func: Callable[..., Coroutine[Any, Any, Any]],
9494
) -> Callable[..., Coroutine[Any, Any, Any]]:
95-
"""Decorator to catch ServerError for a straming method,log it and then rethrow it to be handled by framework."""
95+
"""Decorator to catch ServerError for a streaming method,log it and then rethrow it to be handled by framework."""
9696

9797
@functools.wraps(func)
9898
async def wrapper(*args: Any, **kwargs: Any) -> Any:

0 commit comments

Comments
 (0)