From cd0fd2b0616fdd9b5fe455b37c2cd0beb112d465 Mon Sep 17 00:00:00 2001 From: Nathan Jiang Date: Mon, 17 Jun 2024 11:19:01 -0400 Subject: [PATCH] Fixing issue #642. --- pretext/LinearBasic/SimpleBalancedParentheses.ptx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pretext/LinearBasic/SimpleBalancedParentheses.ptx b/pretext/LinearBasic/SimpleBalancedParentheses.ptx index c27a7ce4..82b43b81 100644 --- a/pretext/LinearBasic/SimpleBalancedParentheses.ptx +++ b/pretext/LinearBasic/SimpleBalancedParentheses.ptx @@ -60,7 +60,7 @@ -//simple program that checks for missing parantheses +//simple program that checks for missing parentheses #include <iostream> #include <stack> #include <string> @@ -110,7 +110,7 @@ int main() { #Program that detects if a set of parentheses is complete. -#simple program that checks for missing parantheses +#simple program that checks for missing parentheses from pythonds.basic.stack import Stack #returns whether the parentheses in the input are balanced