fix typo in readme

Commit cba4830 · patx · 2025-05-22T20:34:04-04:00

Changeset
cba48308b3fb7a86a23263b71b533bf3de3ba48e
Parents
b0f48453d6d646de75762d5adf2b741431351dfb

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/README.md b/README.md
index 785432a..ccc33e3 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Place it in your project directory, and you are good to go. Note that `jinja2` m
 pip install jinja2 multipart aiofiles
 ```
 
-By default MicroPie will use the `json` library from Python's standard library. If you need faster performance you can use `orjson`. MicroPie *will* use `orjson` *if installed* by default. If it is not installed, MicroPie will fallback to `json`. This means with or without `orjson` installed MicroPie will still handle JSON requests/responses the same. To install `orjson` to take advantage of it's performance use:
+By default MicroPie will use the `json` library from Python's standard library. If you need faster performance you can use `orjson`. MicroPie *will* use `orjson` *if installed* by default. If it is not installed, MicroPie will fallback to `json`. This means with or without `orjson` installed MicroPie will still handle JSON requests/responses the same. To install `orjson` and take advantage of it's performance, use:
 ```bash
 pip install orjson
 ```