From 490a763af78d5f413bc99ade75a4c8034c8c2abb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 12:20:50 +0100 Subject: [PATCH] Deque --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a788729..1258847 100644 --- a/README.md +++ b/README.md @@ -998,7 +998,7 @@ from array import array Deque ----- -**Short for “double-ended queue” and pronounced “deck”. They are thread-safe lists with efficient appends and pops from either side.** +**Short for “double-ended queue” and pronounced “deck”. It is a thread-safe list with efficient appends and pops from either side.** ```python from collections import deque