From 7988e665e2b5f27bb2292e0048ac9b4fb50e436a Mon Sep 17 00:00:00 2001 From: danish-mehmood Date: Wed, 23 Oct 2024 23:11:31 +0500 Subject: [PATCH] fix typo in ziplist.c Signed-off-by: danish-mehmood --- src/ziplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ziplist.c b/src/ziplist.c index d4f8b71699..608487fa2b 100644 --- a/src/ziplist.c +++ b/src/ziplist.c @@ -1,4 +1,4 @@ -/* The ziplist is a specially encoded dually linked list that is designed +/* The ziplist is a specially encoded doubly linked list that is designed * to be very memory efficient. It stores both strings and integer values, * where integers are encoded as actual integers instead of a series of * characters. It allows push and pop operations on either side of the list