diff --git a/docs/configuration/options.md b/docs/configuration/options.md index e91fec53..fdf68752 100644 --- a/docs/configuration/options.md +++ b/docs/configuration/options.md @@ -1516,7 +1516,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` diff --git a/scripts/build_config_option_docs.py b/scripts/build_config_option_docs.py index 4040ca45..3afd8e15 100755 --- a/scripts/build_config_option_docs.py +++ b/scripts/build_config_option_docs.py @@ -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.", }