From 5467a9f65c0b2801ebb4a5cfbdfa37179e425407 Mon Sep 17 00:00:00 2001 From: "Nicholas C. Zakas" Date: Sun, 21 Apr 2019 10:39:21 -0700 Subject: [PATCH 1/2] Fix: Binary heap description --- src/data-structures/binary-heap/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data-structures/binary-heap/package.json b/src/data-structures/binary-heap/package.json index 4b5146f..73016e3 100644 --- a/src/data-structures/binary-heap/package.json +++ b/src/data-structures/binary-heap/package.json @@ -1,7 +1,7 @@ { "name": "@humanwhocodes/binary-heap", - "version": "2.0.0", - "description": "A doubly linked list implementation in JavaScript", + "version": "2.0.1", + "description": "A binary heap implementation in JavaScript", "main": "binary-heap.js", "scripts": { "test": "npx mocha ../../../tests/data-structures/binary-heap/binary-heap.js" From 369df2a298ddb8075a2496a0238a8ae377576d19 Mon Sep 17 00:00:00 2001 From: Konrad Hyzy Date: Fri, 2 Oct 2020 02:21:15 +0200 Subject: [PATCH 2/2] 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