From c03d9fb3df0514dc3506528aa0edcd4eca47ebf1 Mon Sep 17 00:00:00 2001 From: tporadowski Date: Tue, 26 Jan 2021 23:17:19 +0100 Subject: [PATCH] [6.0] src/endianconv.c --- src/endianconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/endianconv.c b/src/endianconv.c index f3b0b473..918844e2 100644 --- a/src/endianconv.c +++ b/src/endianconv.c @@ -8,7 +8,7 @@ * to be backward compatible are still in big endian) because most of the * production environments are little endian, and we have a lot of conversions * in a few places because ziplists, intsets, zipmaps, need to be endian-neutral - * even in memory, since they are serialied on RDB files directly with a single + * even in memory, since they are serialized on RDB files directly with a single * write(2) without other additional steps. * * ----------------------------------------------------------------------------