Fix spelling mistake

This commit is contained in:
Suraj Patil 2020-05-17 20:37:48 +05:30 committed by GitHub
parent 553b835163
commit 15c2ced3ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

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; struct node *t;
if(start==NULL) if(start==NULL)
@ -85,7 +85,7 @@ int main()
insert(); insert();
break; break;
case 2: case 2:
deleteion(); deletion();
break; break;
case 3: case 3:
viewlist(); viewlist();