Skip to content

Fix typos in json_reporter documentation #2493

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 2 commits into from
May 5, 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
6 changes: 3 additions & 3 deletions pkgs/test/doc/json_reporter.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class DoneEvent extends Event {

// Whether all tests succeeded (or were skipped).
//
// Will be `null` if the test runner was close before all tests completed
// Will be `null` if the test runner was closed before all tests completed
// running.
bool? success;
}
Expand Down Expand Up @@ -362,7 +362,7 @@ class Test {
// Will only be present if `root_url` is different from `url`.
int? root_line;

// The (1-based) line on in the original test suite from which the test
// The (1-based) line in the original test suite from which the test
// originated.
//
// Will only be present if `root_url` is different from `url`.
Expand Down Expand Up @@ -395,7 +395,7 @@ and may be a `package:` URL.

```
class Suite {
// An opaque ID for the group.
// An opaque ID for the suite.
int id;

// The platform on which the suite is running.
Expand Down