Improve documentation.
[pyutils.git] / src / pyutils / security / acl.py
index d6d5623071294c4f5ee99cad6cf347fe8673be07..0d223f2756142b7a16cecb9fc081d1c9d1da7fb7 100644 (file)
@@ -115,7 +115,7 @@ class SetBasedACL(SimpleACL):
 
 class AllowListACL(SetBasedACL):
     """Convenience subclass for a list that only allows known items.
-    i.e. a 'allowlist'
+    i.e. an 'allowlist'
     """
 
     def __init__(self, *, allow_set: Optional[Set[Any]]) -> None: