Skip to content

Commit

Permalink
docs: fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
pionxzh committed Dec 6, 2023
1 parent 7893ebf commit 3a314e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/unminify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This package offers a comprehensive set of transformation rules designed to unminify and enhance the readability of code.

It covers most of patterns that are used by the following tools:
It covers most of the patterns that are used by the following tools:
- [Terser](https://terser.org/) (Check the [Terser Progress](./docs/Terser.md))
- [Babel](https://babeljs.io/) (Check the [Babel Progress](./docs/Babel.md))
- [SWC](https://swc.rs/) (Check the [SWC Progress](./docs/SWC.md))
Expand Down Expand Up @@ -174,7 +174,7 @@ Simplify bracket notation.

### `un-while-loop`

Converts for loop without init and update to while loop.
Converts for loop without init and update to while loops.

```diff
- for (;;) {}
Expand Down Expand Up @@ -586,7 +586,7 @@ Unsupported features:
Restore async/await from helper `__awaiter` and `__generator`.\
Currently, this transformation only supports output from **TypeScript**.

And it does not handled control flow properly, as it needs graph analysis.
And it does not handle control flow properly, as it needs graph analysis.

Please aware there are **tons of edge cases** that are not covered by this rule.

Expand Down Expand Up @@ -692,8 +692,8 @@ This transformation formats the code with [prettier](https://prettier.io/), typi

> Lebab transpiles your ES5 code to ES6/ES7. It does exactly the opposite of what Babel does.
We integrated part of rules from [lebab](https://github.com/lebab/lebab) to unminify the code.\
By utilizing lebab, we can save the repetitive work of writing the same transformations ourselves.
We integrated part of rules from [Lebab](https://github.com/lebab/lebab) to unminify the code.\
By utilizing Lebab, we can save the repetitive work of writing the same transformations ourselves.

## TODO

Expand Down

0 comments on commit 3a314e0

Please sign in to comment.