mirror of https://github.com/TheAlgorithms/C
Fix spelling mistake
This commit is contained in:
parent
553b835163
commit
15c2ced3ba
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue