From 95c1870d02dd83b9fc98e550ea89fadc07136f35 Mon Sep 17 00:00:00 2001 From: Rafael Aguiar Date: Wed, 12 Aug 2015 12:01:21 -0300 Subject: [PATCH] minor phrasing fix --- stacks_queues/sort_stack/sort_stack_solution.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks_queues/sort_stack/sort_stack_solution.ipynb b/stacks_queues/sort_stack/sort_stack_solution.ipynb index c8ed967..4e51e64 100644 --- a/stacks_queues/sort_stack/sort_stack_solution.ipynb +++ b/stacks_queues/sort_stack/sort_stack_solution.ipynb @@ -62,7 +62,7 @@ "* Our buffer will hold elements in reverse sorted order, smallest at the top\n", "* Store the current top element in a temp variable\n", "* While stack is not empty\n", - " * While buffer is empty or buffer top is > than temp\n", + " * While buffer is not empty or buffer top is > than temp\n", " * Move buffer top to stack\n", " * Move temp to top of buffer\n", "* Return buffer\n",