Skip to content

Commit

Permalink
Fix common typo in doc comment of all helper classes (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
djmattyg007 committed May 16, 2022
1 parent 444acdc commit f282d31
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit f282d31

Please sign in to comment.