aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-04-11 16:58:50 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-04-11 16:58:50 -0700
commit3f2f8a6909219b3a1b9564338037c9a31418bc99 (patch)
treec4ce687ac85ac3a4e66d900cd17ab404bd471148
parent78e8356387fb3a49e3451ec7f2f338762c4ac346 (diff)
downloaddeque-3f2f8a6909219b3a1b9564338037c9a31418bc99.tar.zst
Rename one final vecdeque -> deque
-rw-r--r--deque.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/deque.go b/deque.go
index 3bef22b..e267eba 100644
--- a/deque.go
+++ b/deque.go
@@ -1,4 +1,4 @@
-// Package vecdeque implements a double-ended queue (deque) implemented with a
+// Package deque implements a double-ended queue (deque) implemented with a
// growable ring buffer.
//
// This queue has O(1) amortized inserts and removals from both ends of the