From e78000c87977bb7515c4c0d91db2bc6396863409 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 27 Dec 2022 00:27:16 +0900 Subject: [PATCH] Fix typo in iqsort.h comparision -> comparison --- kitty/iqsort.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/iqsort.h b/kitty/iqsort.h index 07480d512..e4ee16755 100644 --- a/kitty/iqsort.h +++ b/kitty/iqsort.h @@ -38,7 +38,7 @@ * 1) type of each element, TYPE, * 2) address of the beginning of the array, of type TYPE*, * 3) number of elements in the array, and - * 4) comparision routine. + * 4) comparison routine. * Array pointer and number of elements are referenced only once. * This is similar to a call * qsort(BASE,NELT,sizeof(TYPE),ISLT)