E5F7
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ffab57 commit 22b323eCopy full SHA for 22b323e
src/data-structures/linked-list/LinkedList.js
@@ -65,7 +65,7 @@ export default class LinkedList {
65
66
let deletedNode = null;
67
68
- // If the head must be deleted then make next node that is differ
+ // If the head must be deleted then make next node that is different
69
// from the head to be a new head.
70
while (this.head && this.compare.equal(this.head.value, value)) {
71
deletedNode = this.head;
0 commit comments