Skip to content

Commit 11ad9e1

Browse files
committed
Fix comment in typo
1 parent 37c6025 commit 11ad9e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/async/test_inference_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def _append_fragment(f: LlmPredictionFragment, round_index: int) -> None:
479479

480480

481481
# Also check coroutine support in the asynchronous API
482-
# (this become a regular sync tool in the sync API tests)
482+
# (this becomes a regular sync tool in the sync API tests)
483483
async def divide(numerator: float, denominator: float) -> float:
484484
"""Divide the given numerator by the given denominator. Return the result."""
485485
return numerator / denominator

tests/sync/test_inference_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def _append_fragment(f: LlmPredictionFragment, round_index: int) -> None:
464464

465465

466466
# Also check coroutine support in the asynchronous API
467-
# (this become a regular sync tool in the sync API tests)
467+
# (this becomes a regular sync tool in the sync API tests)
468468
def divide(numerator: float, denominator: float) -> float:
469469
"""Divide the given numerator by the given denominator. Return the result."""
470470
return numerator / denominator

0 commit comments

Comments
 (0)