From 8e0c6d1792e1398c0d533cbe8b6eae345c2645dc Mon Sep 17 00:00:00 2001 From: Anna <3461836+annarider@users.noreply.github.com> Date: Tue, 27 May 2025 10:07:03 -0600 Subject: [PATCH 1/2] Exercise spec: Fix typo in 13_input_output_spec.rb --- spec/13_input_output_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/13_input_output_spec.rb b/spec/13_input_output_spec.rb index f31f8fbf..98bc956b 100644 --- a/spec/13_input_output_spec.rb +++ b/spec/13_input_output_spec.rb @@ -175,7 +175,7 @@ end end - # It is unneccessary to write tests for methods that only contain puts + # It is unnecessary to write tests for methods that only contain puts # statements, like #final_message. Puts is a basic part of the standard # ruby library & is already well tested. Plus, most 'real world # applications' don't even output like this except to loggers. From 424ccaaa59e54ffaae7e191ded4528712676b7c1 Mon Sep 17 00:00:00 2001 From: Anna <3461836+annarider@users.noreply.github.com> Date: Tue, 27 May 2025 10:10:33 -0600 Subject: [PATCH 2/2] Answer spec: Fix typo in 13_input_output_answer.rb --- spec_answers/13_input_output_answer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec_answers/13_input_output_answer.rb b/spec_answers/13_input_output_answer.rb index 8d593905..c0bf3037 100644 --- a/spec_answers/13_input_output_answer.rb +++ b/spec_answers/13_input_output_answer.rb @@ -188,7 +188,7 @@ end end - # It is unneccessary to write tests for methods that only contain puts + # It is unnecessary to write tests for methods that only contain puts # statements, like #final_message. Puts is a basic part of the standard # ruby library & is already well tested. Plus, most 'real world # applications' don't even output like this except to loggers.