small fix in docstring

This commit is contained in:
nocturn9x 2020-05-31 13:24:36 +00:00
parent b9bd62d394
commit bf87fe9b76
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ from .errors import QueueEmpty, QueueFull, StackEmpty, StackFull
class TTLQueue:
"""A FIFO queue with per-item time to live (TTL)
"""A FIFO data structure with per-item time to live (TTL)
All items will have a default time to live, after that has
expired (on the next mutating operation a.k.a put or get)
expired elements will be popped out automatically.