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