Fix Typos in Comment and Docs (#10644)

This commit is contained in:
Web3 Outlaw 2025-08-27 17:06:39 +03:00 committed by GitHub
parent 57aa7d5c12
commit 77b5c6b161
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ SDK to spawn and control these sandboxes.
You can use the E2B CLI to create a custom sandbox with a Dockerfile. Read the full guide
[here](https://e2b.dev/docs/guide/custom-sandbox). The premade OpenHands sandbox for E2B is set up in the `containers`
directory. and it's called `openhands`.
directory, and it's called `openhands`.
## Debugging

View File

@ -489,7 +489,7 @@ def test_amortized_forgetting_condenser_keeps_first_and_last_events():
events = [create_test_event(f'Event {i}', id=i) for i in range(max_size * 10)]
# To ensure the most recent event is always recorded, track it in a non-local variable udpated
# To ensure the most recent event is always recorded, track it in a non-local variable updated
# with a closure we'll pass to the view generator as a callback.
most_recent_event: Event | None = None
@ -773,7 +773,7 @@ def test_structured_summary_condenser_keeps_first_and_summary_events(
i, max_size
)
# Ensure that the prefix is appropiately maintained
# Ensure that the prefix is appropriately maintained
assert view[:keep_first] == events[: min(keep_first, i + 1)]
# If we've condensed, ensure that the summary event is present