Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo: indended -> indented #2161

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/configuration/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,7 @@ If `True` isort will follow symbolic links when doing recursive sorting.

## Indented Import Headings

If `True` isort will apply import headings to indended imports the same way it does unindented ones.
If `True` isort will apply import headings to indented imports the same way it does unindented ones.

**Type:** Bool
**Default:** `True`
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_config_option_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __str__(self):
"git_ignore": "If `True` isort will honor ignores within locally defined .git_ignore files.",
"formatting_function": "The fully qualified Python path of a function to apply to format code sorted by isort.",
"group_by_package": "If `True` isort will automatically create section groups by the top-level package they come from.",
"indented_import_headings": "If `True` isort will apply import headings to indended imports the same way it does unindented ones.",
"indented_import_headings": "If `True` isort will apply import headings to indented imports the same way it does unindented ones.",
"import_headings": "A mapping of import sections to import heading comments that should show above them.",
"import_footers": "A mapping of import sections to import footer comments that should show below them.",
}
Expand Down
Loading