Skip to content

Commit 24f2d3e

Browse files
committed
docs: Trailing spaces
1 parent e7f9a1d commit 24f2d3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bindings/python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Install with `pip`:
5252
pip install css_inline
5353
```
5454

55-
Pre-compiled wheels are available for most popular platforms.
55+
Pre-compiled wheels are available for most popular platforms.
5656
If not available for your platform, a Rust compiler will be needed to build this package from source. Rust version 1.60 or higher is required.
5757

5858
## Usage
@@ -82,7 +82,7 @@ inlined = css_inline.inline(HTML)
8282
# </html>
8383
```
8484

85-
When there is a need to inline multiple HTML documents simultaneously, `css_inline` offers the `inline_many` function.
85+
When there is a need to inline multiple HTML documents simultaneously, `css_inline` offers the `inline_many` function.
8686
This feature allows for concurrent processing of several inputs, significantly improving performance when dealing with a large number of documents.
8787

8888
```python
@@ -91,7 +91,7 @@ import css_inline
9191
css_inline.inline_many(["<...>", "<...>"])
9292
```
9393

94-
Under the hood, `inline_many`, spawns threads at the Rust layer to handle the parallel processing of inputs.
94+
Under the hood, `inline_many`, spawns threads at the Rust layer to handle the parallel processing of inputs.
9595
This results in faster execution times compared to employing parallel processing techniques at the Python level.
9696

9797
**Note**: To fully benefit from `inline_many`, you should run your application on a multicore machine.

0 commit comments

Comments
 (0)