Skip to content

Commit 91498df

Browse files
authored
..., not ....
1 parent 6efa164 commit 91498df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/stacks/stack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def pop(self):
4040
4141
>>> Stack().pop()
4242
Traceback (most recent call last):
43-
....
43+
...
4444
StackUnderflowError
4545
"""
4646
if not self.stack:
@@ -53,7 +53,7 @@ def peek(self):
5353
5454
>>> Stack().pop()
5555
Traceback (most recent call last):
56-
....
56+
...
5757
StackUnderflowError
5858
"""
5959
if not self.stack:

0 commit comments

Comments
 (0)