From f34f596664380a6eae1f81c1c3dafec5f67cfffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 29 Jan 2019 19:30:57 +0100 Subject: [PATCH] Deque --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ea52ec5..d8f8129 100644 --- a/README.md +++ b/README.md @@ -1085,7 +1085,8 @@ from array import array Deque ----- -**Short for “double-ended queue” and pronounced “deck”. It is a thread-safe list 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