Skip to content

Commit 3732819

Browse files
committed
fix(choices): Correct typos in docstrings for ACL choices
Fixes multiple instances of "availble" to "available" in docstrings for ACL action, rule action, type, and protocol choices. Ensures documentation accuracy and readability.
1 parent 2b2f628 commit 3732819

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

netbox_acls/choices.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
class ACLActionChoices(ChoiceSet):
1818
"""
19-
Defines the choices availble for the Access Lists plugin specific to ACL default_action.
19+
Defines the choices available for the Access Lists plugin specific to ACL default_action.
2020
"""
2121

2222
ACTION_DENY = "deny"
@@ -32,7 +32,7 @@ class ACLActionChoices(ChoiceSet):
3232

3333
class ACLRuleActionChoices(ChoiceSet):
3434
"""
35-
Defines the choices availble for the Access Lists plugin specific to ACL rule actions.
35+
Defines the choices available for the Access Lists plugin specific to ACL rule actions.
3636
"""
3737

3838
ACTION_DENY = "deny"
@@ -62,7 +62,7 @@ class ACLAssignmentDirectionChoices(ChoiceSet):
6262

6363
class ACLTypeChoices(ChoiceSet):
6464
"""
65-
Defines the choices availble for the Access Lists plugin specific to ACL type.
65+
Defines the choices available for the Access Lists plugin specific to ACL type.
6666
"""
6767

6868
TYPE_STANDARD = "standard"
@@ -76,7 +76,7 @@ class ACLTypeChoices(ChoiceSet):
7676

7777
class ACLProtocolChoices(ChoiceSet):
7878
"""
79-
Defines the choices availble for the Access Lists plugin specific to ACL Rule protocol.
79+
Defines the choices available for the Access Lists plugin specific to ACL Rule protocol.
8080
"""
8181

8282
PROTOCOL_ICMP = "icmp"

0 commit comments

Comments
 (0)