diff --git a/C++/Data Structure/SinglyLinkedList.cpp b/C++/Data Structure/SinglyLinkedList.cpp index dfad0da9f..1364982d3 100644 --- a/C++/Data Structure/SinglyLinkedList.cpp +++ b/C++/Data Structure/SinglyLinkedList.cpp @@ -7,7 +7,7 @@ using namespace std; /* - Constructor for SinglyLinkedList for new Objects + Constructor for SinglyLinkedList for new Object Points to NULL i.e there are no objects in the list */ List::List(): head(0){