merge: rename SinglyLinkList to SinglyLinkedList (#881)

This commit is contained in:
Malte Jürgens
2022-02-14 08:19:10 +00:00
committed by GitHub
parent 31b06c9abe
commit c496925d25
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import { LinkedList } from '../SinglyLinkList'
import { LinkedList } from '../SinglyLinkedList'
describe('SinglyLinkList', () => {
describe('SinglyLinkedList', () => {
it('Check addLast', () => {
const list = new LinkedList()
expect(list.get()).toEqual([])