Skip to content

Commit 2084c96

Browse files
Prakash-Jha-Devfelipernb
authored andcommitted
fixed typo in treap unit test
1 parent dccdcb8 commit 2084c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/data_structures/treap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ describe('Treap', () => {
9999
assert.equal(treap.maximum(), 1);
100100
});
101101

102-
it('handles dumplicated elements', () => {
102+
it('handles duplicated elements', () => {
103103
treap.insert(1);
104104
// [1, 1]
105105
assert.equal(treap.size(), 2);

0 commit comments

Comments
 (0)