Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Sep 9, 2023
1 parent a2e9080 commit b0338c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-conditional-expect.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ thrown by the wrapped function:
```typescript
class NoErrorThrownError extends Error {}

const getError = async <TError,>(call: () => unknown): Promise<TError> => {
const getError = async <TError>(call: () => unknown): Promise<TError> => {
try {
await call();

Expand Down

0 comments on commit b0338c0

Please sign in to comment.