From d1f9bd8f242183fa462d57843f956166b91a269e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Lu=CC=88dtke?= Date: Wed, 30 Jan 2019 17:00:09 +0100 Subject: [PATCH] Typo: remove superfluous "the" --- deque.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deque.go b/deque.go index d9d9863..3d83285 100644 --- a/deque.go +++ b/deque.go @@ -103,8 +103,8 @@ func (q *Deque) Back() interface{} { // call panics. // // The purpose of At is to allow Deque to serve as a more general purpose -// circular buffer, where items are only added to and removed from the the ends -// of the deque, but may be read from any place within the deque. Consider the +// circular buffer, where items are only added to and removed from the ends of +// the deque, but may be read from any place within the deque. Consider the // case of a fixed-size circular log buffer: A new entry is pushed onto one end // and when full the oldest is popped from the other end. All the log entries // in the buffer must be readable without altering the buffer contents.