Skip to content
Merged
Show file tree
Hide file tree
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 docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ This command starts a local development server and opens up a browser window. Mo
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.
This command generates static content into the `build` directory and can be served using any static content hosting service.
4 changes: 2 additions & 2 deletions types/vitest/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ interface CustomMatchers<R = unknown> {
toBeValidEpochCommittee(opts: {committeeCount: number; validatorsPerCommittee: number; slotsPerEpoch: number}): R;
/**
* @deprecated
* We highly recommend to not use this matcher instead use detail test case
* We highly recommend to not use this matcher instead use detailed test case
* where you don't need message to explain assertion
*
* @example
Expand All @@ -27,7 +27,7 @@ interface CustomMatchers<R = unknown> {
toBeWithMessage(expected: unknown, message: string): R;
/**
* @deprecated
* We highly recommend to not use this matcher instead use detail test case with .toEqual
* We highly recommend to not use this matcher instead use detailed test case with .toEqual
* where you don't need message to explain assertion
* */
toEqualWithMessage(expected: unknown, message: string): R;
Expand Down