Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #144

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lectures/Asynchrony/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ We provide a [solution example](exercises/solutions/lecture/src/main/java/Basics
### Sync over async

Doing the exercise above, you've noticed `App.java` uses `join()` to block until a future finishes and either return the result or throw the error represented by the future.
There are other such "sync over async" operations, such as `isDone()` and `isCompletedExceptionallly()` to check a future's status.
There are other such "sync over async" operations, such as `isDone()` and `isCompletedExceptionally()` to check a future's status.

"Sync over async" operations are useful specifically to use asynchronous operations in a context that must be synchronous,
typically because you are working with a framework that expects a synchronous operation.
Expand Down