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 common typo in doc comment of all helper classes #41

Merged
merged 1 commit into from May 16, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dlint/linters/helpers/bad_builtin_use.py
Expand Up @@ -14,7 +14,7 @@


class BadBuiltinUseLinter(base.BaseLinter, util.ABC):
"""This abstract base class provides an simple interface for creating new
"""This abstract base class provides a simple interface for creating new
lint rules that block builtin functions.
"""
@property
Expand Down
2 changes: 1 addition & 1 deletion dlint/linters/helpers/bad_kwarg_use.py
Expand Up @@ -17,7 +17,7 @@


class BadKwargUseLinter(base.BaseLinter, util.ABC):
"""This abstract base class provides an simple interface for creating new
"""This abstract base class provides a simple interface for creating new
lint rules that block bad kwarg use.
"""

Expand Down
2 changes: 1 addition & 1 deletion dlint/linters/helpers/bad_module_attribute_use.py
Expand Up @@ -15,7 +15,7 @@


class BadModuleAttributeUseLinter(base.BaseLinter, util.ABC):
"""This abstract base class provides an simple interface for creating new
"""This abstract base class provides a simple interface for creating new
lint rules that block bad attributes within a module.
"""

Expand Down
2 changes: 1 addition & 1 deletion dlint/linters/helpers/bad_module_use.py
Expand Up @@ -15,7 +15,7 @@


class BadModuleUseLinter(base.BaseLinter, util.ABC):
"""This abstract base class provides an simple interface for creating new
"""This abstract base class provides a simple interface for creating new
lint rules that block bad modules.
"""

Expand Down
2 changes: 1 addition & 1 deletion dlint/linters/helpers/bad_name_attribute_use.py
Expand Up @@ -22,7 +22,7 @@


class BadNameAttributeUseLinter(base.BaseLinter, util.ABC):
"""This abstract base class provides an simple interface for creating new
"""This abstract base class provides a simple interface for creating new
lint rules that block bad attributes on a variable object.
"""

Expand Down