diff --git a/src/main/python/algorithms/datastructures/stack/IntStack.py b/src/main/python/algorithms/datastructures/stack/IntStack.py index 4433447..04e8725 100644 --- a/src/main/python/algorithms/datastructures/stack/IntStack.py +++ b/src/main/python/algorithms/datastructures/stack/IntStack.py @@ -33,7 +33,7 @@ def __init__(self, maxSize): def size(self): """ - Returns the number of elements insize the stack + Returns the number of elements inside the stack """ return self.pos