Skip to content

Commit eb04875

Browse files
committed
description changes made in insert_at_begin.cpp
1 parent 20ef650 commit eb04875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Data Structures/Linked Lists/Doubly Linked List/insert_at_begin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
33
This is a Doubly Linked List program which gets a integer data from the user and
4-
creates a node which is appended to the Linked List.
4+
creates a node which is inserted at the beginning to the Linked List.
55
66
Since, it is a Doubly Linked List, both the forward and backward traversal is also possible.
77
@@ -77,4 +77,4 @@ int main() {
7777
display(head);
7878

7979
return 0;
80-
}
80+
}

0 commit comments

Comments
 (0)