From f11eef2985311c94c18acc36a53875ea215c6700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwena=C3=ABl=20Ropert?= Date: Thu, 25 May 2023 14:23:41 +0200 Subject: [PATCH] Correct author's name of simple8b algo See full name for example at https://dl.acm.org/doi/10.5555/1712666.1712668 --- simple8b/encoding.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple8b/encoding.go b/simple8b/encoding.go index bedd690..cf7c64e 100644 --- a/simple8b/encoding.go +++ b/simple8b/encoding.go @@ -1,5 +1,5 @@ // Package simple8b implements the 64bit integer encoding algoritm as published -// by Ann and Moffat in "Index compression using 64-bit words", Softw. Pract. Exper. 2010; 40:131–147 +// by Anh and Moffat in "Index compression using 64-bit words", Softw. Pract. Exper. 2010; 40:131–147 // // It is capable of encoding multiple integers with values betweeen 0 and to 1^60 -1, in a single word. package simple8b