Skip to content

Commit

Permalink
Merge pull request #2298 from Rotzbua/fix_typo
Browse files Browse the repository at this point in the history
fix: typo
  • Loading branch information
DanielNoord authored Jan 9, 2025
2 parents 122c09f + bcd374f commit 99d6219
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/major_releases/introducing_isort_5.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ import c
import d
```

isort 5 adds support for [Action Comments](https://pycqa.github.io/isort/docs/configuration/action_comments.html) which provide a quick and convient way to control the flow of parsing within single source files.
isort 5 adds support for [Action Comments](https://pycqa.github.io/isort/docs/configuration/action_comments.html) which provide a quick and convenient way to control the flow of parsing within single source files.


# First class Python API
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/test_regressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def test_trailing_comma_doesnt_introduce_broken_code_with_comment_and_wrap_issue


def test_ensure_sre_parse_is_identified_as_stdlib_issue_1304():
"""Ensure sre_parse is idenified as STDLIB.
"""Ensure sre_parse is identified as STDLIB.
See: https://github.com/pycqa/isort/issues/1304.
"""
assert (
Expand Down Expand Up @@ -353,7 +353,7 @@ def test_isort_shouldnt_add_extra_new_line_when_fass_and_n_issue_1315():

def test_isort_doesnt_rewrite_import_with_dot_to_from_import_issue_1280():
"""Test to ensure isort doesn't rewrite imports in the from of import y.x into from y import x.
This is because they are not technically fully equivalent to eachother and can introduce broken
This is because they are not technically fully equivalent to each other and can introduce broken
behaviour.
See: https://github.com/pycqa/isort/issues/1280
"""
Expand Down Expand Up @@ -624,7 +624,7 @@ def test_reverse_relative_combined_with_force_sort_within_sections_issue_1395():


def test_isort_should_be_able_to_add_independent_of_doc_string_placement_issue_1420():
"""isort should be able to know when an import requested to be added is sucesfully added,
"""isort should be able to know when an import requested to be added is successfully added,
independent of where the top doc string is located.
See: https://github.com/PyCQA/isort/issues/1420
"""
Expand Down

0 comments on commit 99d6219

Please sign in to comment.