From bf87fe9b76af06cc690db325f9c3fe342642ec63 Mon Sep 17 00:00:00 2001 From: nocturn9x Date: Sun, 31 May 2020 13:24:36 +0000 Subject: [PATCH] small fix in docstring --- core/structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/structures.py b/core/structures.py index 9f61469..6ea6178 100644 --- a/core/structures.py +++ b/core/structures.py @@ -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.