From 1b87b7148ee7e8937cd3e71e3b97a2fe44cdc3ed Mon Sep 17 00:00:00 2001 From: tgruben Date: Mon, 22 Feb 2021 11:06:55 -0600 Subject: [PATCH] Update api.go Co-authored-by: Matthew Jaffee --- api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.go b/api.go index 34976f0df..7c3bc8ceb 100644 --- a/api.go +++ b/api.go @@ -425,7 +425,7 @@ func importWorker(importWork chan importJob) { data := viewData if fileMagic != roaring.MagicNumber { // if the view data arrives is in the "standard" roaring format, we must - // make a copy of data in order allow for the convertion to the pilosa roaring run format + // make a copy of data in order allow for the conversion to the pilosa roaring run format // in field.importRoaring data = make([]byte, len(viewData)) copy(data, viewData)