Fix typos

This commit is contained in:
Chalarangelo
2022-07-16 17:25:37 +03:00
parent 3b17249cb7
commit c767b29588
8 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ The main operations of a doubly linked list data structure are:
- `removeAt`: Removes the element at the specific index
- `getAt`: Retrieves the element at the specific index
- `clear`: Empties the doubly linked list
- `reverse`: Reverses the order of elements in the doulby linked list
- `reverse`: Reverses the order of elements in the doubly linked list
### Implementation