Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 92a6b5a

Browse files
made changes to minor copy update to LinkedList unit test (knaxus#199)
1 parent ff5e81c commit 92a6b5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/_DataStructures_/LinkedList/LinkedList.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('Data Structures: Linked Lists', () => {
1818
expect(typeof LinkedList.prototype.constructor).toEqual('function');
1919
});
2020

21-
it('Should set the data and next field of a node', () => {
21+
it('Should set the head, tail and size of a LinkedList', () => {
2222
const list = new LinkedList();
2323
expect(list.head).not.toEqual(undefined);
2424
expect(list.head).toEqual(null);

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /