Merge pull request #531 from suraj95/patch-1

Spelling is incorrect
This commit is contained in:
Stepfen Shawn 2020-05-19 22:27:52 +08:00 committed by GitHub
commit c873d21c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ void insert()//function to insert at first location
}
}
///////////////////////////////////////////////////////////
void deleteion()//function to delete from first position
void deletion()//function to delete from first position
{
struct node *t;
if(start==NULL)
@ -85,7 +85,7 @@ int main()
insert();
break;
case 2:
deleteion();
deletion();
break;
case 3:
viewlist();