From 369df2a298ddb8075a2496a0238a8ae377576d19 Mon Sep 17 00:00:00 2001 From: Konrad Hyzy Date: Fri, 2 Oct 2020 02:21:15 +0200 Subject: [PATCH] Docs: Fix the title of the header in QuickSort implementation (#50) --- algorithms/sorting/quicksort/quicksort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/sorting/quicksort/quicksort.js b/algorithms/sorting/quicksort/quicksort.js index ba876dc..0a0e4bb 100644 --- a/algorithms/sorting/quicksort/quicksort.js +++ b/algorithms/sorting/quicksort/quicksort.js @@ -1,5 +1,5 @@ /* - * Insertion sort implementation in JavaScript + * Quick sort implementation in JavaScript * Copyright (c) 2012 Nicholas C. Zakas * * Permission is hereby granted, free of charge, to any person obtaining a copy