Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
glostis committed Aug 28, 2020
1 parent e836a59 commit 9baef90
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/configuration/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Too busy to build your perfect isort configuration? For curated common configura

## Python Version

Tells isort to set the known standard library based on the the specified Python version. Default is to assume any Python 3 version could be the target, and use a union off all stdlib modules across versions. If auto is specified, the version of the interpreter used to run isort (currently: 38) will be used.
Tells isort to set the known standard library based on the specified Python version. Default is to assume any Python 3 version could be the target, and use a union of all stdlib modules across versions. If auto is specified, the version of the interpreter used to run isort (currently: 38) will be used.

**Type:** String
**Default:** `py3`
Expand Down Expand Up @@ -765,7 +765,7 @@ Tells isort to honor noqa comments to enforce skipping those comments.

## Src Paths

Add an explicitly defined source path (modules within src paths have their imports automatically catorgorized as first_party).
Add an explicitly defined source path (modules within src paths have their imports automatically categorized as first_party).

**Type:** Frozenset
**Default:** `frozenset()`
Expand Down Expand Up @@ -948,7 +948,7 @@ Number of files to process in parallel.
- -j
- --jobs

## Dont Order By Type
## Don't Order By Type

Don't order imports by type, which is determined by case, in addition to alphabetically.

Expand Down
2 changes: 1 addition & 1 deletion docs/upgrade_guides/5.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The `-v` (previously for version now for verbose) and `-V` (previously for verbo
## Migrating Config options

The first thing to keep in mind is how isort loads config options has changed in isort 5. It will no longer merge multiple config files, instead you must have 1 isort config per a project.
If you have multiple configs, they will need to be merged into 1 single one. You can see the priority order of configuration files and the manor in which they are loaded on the
If you have multiple configs, they will need to be merged into 1 single one. You can see the priority order of configuration files and the manner in which they are loaded on the
[config files documentation page](https://pycqa.github.io/isort/docs/configuration/config_files/).

### `not_skip`
Expand Down
4 changes: 2 additions & 2 deletions isort/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
"start guide, otherwise, one or more files/directories/stdin must be provided. "
"Use `-` as the first argument to represent stdin. Use --interactive to use the pre 5.0.0 "
"interactive behavior."
""
" "
"If you've used isort 4 but are new to isort 5, see the upgrading guide:"
"https://pycqa.github.io/isort/docs/upgrade_guides/5.0.0/."
)
Expand All @@ -155,7 +155,7 @@ def _build_arg_parser() -> argparse.ArgumentParser:
dest="src_paths",
action="append",
help="Add an explicitly defined source path "
"(modules within src paths have their imports automatically catorgorized as first_party).",
"(modules within src paths have their imports automatically categorized as first_party).",
)
parser.add_argument(
"-a",
Expand Down

0 comments on commit 9baef90

Please sign in to comment.