From 60f71bef0783fdf67da61a3691d04e04cadd6a42 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Tue, 28 Jan 2025 22:10:14 -0600 Subject: [PATCH] forgot to delete some comments --- src/Instructions/StringInstructions.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Instructions/StringInstructions.hs b/src/Instructions/StringInstructions.hs index ceb47db..1993721 100644 --- a/src/Instructions/StringInstructions.hs +++ b/src/Instructions/StringInstructions.hs @@ -174,8 +174,6 @@ instructionStringRemoveNth state@(State {_string = s1 : ss, _int = i1 : is}) = s instructionStringRemoveNth state = state instructionStringSetNth :: State -> State --- instructionStringSetNth state@(State {_string = s1 : ss, _char = c1 : cs, _int = i1 : is}) = state{_string = replaceAt (absNum i1 s1) c1 s1 : ss, _char = cs, _int = is} --- instructionStringSetNth state = state instructionStringSetNth state = instructionVectorSetNth state char string instructionStringStripWhitespace :: State -> State