Skip to content

Commit 73d5e0d

Browse files
committed
chore: fixed grammer
1 parent 6fb4bfc commit 73d5e0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Data-Structures/Queue/Queue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* A Queue is a data structure that allows you to add an element to the end of
33
* a list and remove the item at the front. A queue follows a FIFO (First In First Out)
44
* system, where the first item to enter the queue is the first to be removed,
5-
* all these operations complexity are O(1).
5+
* All these operation complexities are O(1).
66
* This implementation following the linked list structure.
77
*/
88

0 commit comments

Comments
 (0)