Skip to content

Commit

Permalink
chore: putout: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Nov 27, 2024
1 parent 1e0b7a4 commit 2806ea8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2923,7 +2923,7 @@ import {OK} from 'putout/exit-codes';
- 🎩[**ESCover**](https://github.com/coderaiser/escover): Coverage for EcmaScript Modules.
- ♨️ [**Speca**](https://github.com/coderaiser/speca): Write [tape](https://github.com/coderaiser/supertape) tests for you.
- 🤫[**Goldstein**](https://github.com/coderaiser/goldstein): JavaScript with no limits.
- 🎬[**MadCut**](https://github.com/coderaiser/goldstein): CLI tool to cut markdown into peaces.
- 🎬[**MadCut**](https://github.com/coderaiser/goldstein): CLI tool to cut markdown into pieces.
- [**Minify**](https://github.com/coderaiser/minify): a minifier of js, css, html and img files.
- [**RedPut**](https://github.com/putoutjs/redput) - CLI tool to download source of a rule and fixtures from 🐊**Putout Editor** and generate tests from it.
- [**RedLint**](https://github.com/putoutjs/redlint) - Linter for your Filesystem 😏💾.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default async ({readFile, argv}) => {
for (const [index, peace] of peaces) {
for (const [index, peace] of pieces) {
}
};
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default () => {
for (const [index, peace] of peaces) {
for (const [index, peace] of pieces) {
}
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {cut, infer} from './madcut.js';

export default async ({readFile, argv}) => {
for (const [] of peaces) {}
for (const [] of pieces) {}
};
2 changes: 1 addition & 1 deletion packages/plugin-remove-empty/lib/pattern/fixture/null.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ import {
} from './madcut.js';

export default async ({readFile, argv}) => {
for (const [,] of peaces) {
for (const [,] of pieces) {
}
};
2 changes: 1 addition & 1 deletion packages/plugin-remove-nested-blocks/test/putout.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const putout = require('putout');
test('putout: plugin: remove-nested-blocks: remove-empty', (t) => {
const {code} = putout(montag`
export default () => {
for (const [index, peace] of peaces) {
for (const [index, peace] of pieces) {
}
}
`, {
Expand Down

0 comments on commit 2806ea8

Please sign in to comment.