Skip to content

Fix typos in README #2487

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

Merged
merged 1 commit into from
Apr 17, 2025
Merged
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
4 changes: 2 additions & 2 deletions pkgs/checks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ check(someValue)

Some expectations take arguments which are themselves expectations to apply to
other values. These expectations take `Condition` arguments which have the
signature void Function(Subject)`. The conditions check expectations when they
signature `void Function(Subject)`. The conditions check expectations when they
are called with a `Subject` argument.

```dart
Expand All @@ -128,7 +128,7 @@ Expectation extension methods checking asynchronous behavior return a `Future`.
The future should typically be awaited within the test body, however
asynchronous expectations will also ensure that the test is not considered
complete before the expectation is complete.
Expectations with no concrete end conditions, such as an expectation that a
Expectations with no concrete end conditions, such as any expectation that a
future never completes, cannot be awaited and may cause a failure after the test
has already appeared to complete.

Expand Down
Loading