From 14f25418f320695fa5c8046a66dea19e70c59e48 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Sun, 29 Jul 2012 18:16:50 -0400 Subject: [PATCH] Fix a retroactive typo. --- collects/racket/private/sort.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/racket/private/sort.rkt b/collects/racket/private/sort.rkt index 73abf9620e..c7a66ca291 100644 --- a/collects/racket/private/sort.rkt +++ b/collects/racket/private/sort.rkt @@ -8,7 +8,7 @@ Based on "Fast mergesort implementation based on half-copying merge algorithm", Cezary Juszczak, http://kicia.ift.uni.wroc.pl/algorytmy/mergesortpaper.pdf -Written in Scheme by Eli Barzilay. (Note: the reason for the seemingly +Written in Racket by Eli Barzilay. (Note: the reason for the seemingly redundant pointer arithmetic in that paper is dealing with cases of uneven number of elements.)