summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2020-09-25 16:39:50 +0200
committerHasan Ramezani <hasan.r67@gmail.com>2020-09-25 16:39:50 +0200
commite2a95eb4afd7cfe6c549aeb82551b65addb4f68d (patch)
tree1cbe08d600d33f561f75727be4c75d773b8b8e3f
parent856b53043c6b841a448090f8b8147a421250083c (diff)
downloadisort-e2a95eb4afd7cfe6c549aeb82551b65addb4f68d.tar.gz
Fix typo in README.md
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 15377260..38f735fa 100644
--- a/README.md
+++ b/README.md
@@ -533,9 +533,9 @@ isort --rm "os.system" *.py
The `--check-only` option
-------------------------
-isort can also be used to used to verify that code is correctly
-formatted by running it with `-c`. Any files that contain incorrectly
-sorted and/or formatted imports will be outputted to `stderr`.
+isort can also be used to verify that code is correctly formatted
+by running it with `-c`. Any files that contain incorrectly sorted
+and/or formatted imports will be outputted to `stderr`.
```bash
isort **/*.py -c -v