From e154a501057f8bab3697531d0246f6eb2629d6e6 Mon Sep 17 00:00:00 2001 From: KhalidDev <148249284+devAlq@users.noreply.github.com> Date: Fri, 25 Oct 2024 20:48:00 +0300 Subject: [PATCH] Fix typo in README.md (#5895) --- src/main/java/com/thealgorithms/datastructures/lists/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/thealgorithms/datastructures/lists/README.md b/src/main/java/com/thealgorithms/datastructures/lists/README.md index ea389c042..6aefa4c98 100644 --- a/src/main/java/com/thealgorithms/datastructures/lists/README.md +++ b/src/main/java/com/thealgorithms/datastructures/lists/README.md @@ -1,7 +1,7 @@ ## Linked List ### Description -LinkedList is a data structure in which data is stored in a linear manner. It usually contains a data field and a link to the memory location of the next mode. +LinkedList is a data structure in which data is stored in a linear manner. It usually contains a data field and a link to the memory location of the next node. ### Structure