Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
y-hsgw committed Dec 30, 2024
1 parent 2c36825 commit 635e174
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ Manually fixable by
| [padding-around-before-each-blocks](docs/rules/padding-around-before-each-blocks.md) | Enforce padding around `beforeEach` blocks | | | 🔧 | |
| [padding-around-describe-blocks](docs/rules/padding-around-describe-blocks.md) | Enforce padding around `describe` blocks | | | 🔧 | |
| [padding-around-expect-groups](docs/rules/padding-around-expect-groups.md) | Enforce padding around `expect` groups | | | 🔧 | |
| [padding-around-test-blocks](docs/rules/padding-around-test-blocks.md) | Enforce padding around test blocks | | | 🔧 | |
| [padding-around-test-blocks](docs/rules/padding-around-test-blocks.md) | Enforce padding around `test` blocks | | | 🔧 | |
| [prefer-called-with](docs/rules/prefer-called-with.md) | Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()` | | | | |
| [prefer-comparison-matcher](docs/rules/prefer-comparison-matcher.md) | Suggest using the built-in comparison matchers | | | 🔧 | |
| [prefer-each](docs/rules/prefer-each.md) | Prefer using `.each` rather than manual loops | | | | |
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/padding-around-test-blocks.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Enforce padding around test blocks (`padding-around-test-blocks`)
# Enforce padding around `test` blocks (`padding-around-test-blocks`)

🔧 This rule is automatically fixable by the
[`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
Expand Down
2 changes: 1 addition & 1 deletion src/rules/padding-around-test-blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ export const config = [

export default createPaddingRule(
__filename,
'Enforce padding around test blocks',
'Enforce padding around `test` blocks',
config,
);

0 comments on commit 635e174

Please sign in to comment.