From 20c2f71e4885bf50eeca6ee37500e8914f5c998e Mon Sep 17 00:00:00 2001 From: Amy Hong <32148540+AmyHong0502@users.noreply.github.com> Date: Mon, 3 Jan 2022 16:15:34 -0800 Subject: [PATCH] fixed typo --- src/main/python/algorithms/datastructures/stack/IntStack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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