From cb23fc96cfb90206c7dee42c233a200d46b42a75 Mon Sep 17 00:00:00 2001 From: Beryl Hoffman Date: Wed, 20 Nov 2024 16:18:07 -0500 Subject: [PATCH] small fixes --- _sources/Unit3-If-Statements/magpie4.rst | 4 ++-- _sources/Unit4-Iteration/topic-4-1-while-loops.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_sources/Unit3-If-Statements/magpie4.rst b/_sources/Unit3-If-Statements/magpie4.rst index 81abc6a6..a7640d80 100644 --- a/_sources/Unit3-If-Statements/magpie4.rst +++ b/_sources/Unit3-If-Statements/magpie4.rst @@ -175,7 +175,7 @@ You can also step through the code in the |Java Visualizer|. It may take a minut * something "you" * @return the transformed statement */ - private String transformIMeStatement(String statement) + private String transformIYouStatement(String statement) { // ADD CODE HERE return "Why do you..."; @@ -315,7 +315,7 @@ Look at the code. See how it handles “I want to” and you/me statements. .. |replit.com version 4| raw:: html - replit.com version 4 + replit.com version 4 Then add two new methods, ``transformIWantStatement`` and ``transformIYouStatement``, and calls to each as described below. Alter the code either above in the active code window or on |JuiceMind| or |replit.com version 4| or in an IDE of your choice: diff --git a/_sources/Unit4-Iteration/topic-4-1-while-loops.rst b/_sources/Unit4-Iteration/topic-4-1-while-loops.rst index ef530783..b869d648 100644 --- a/_sources/Unit4-Iteration/topic-4-1-while-loops.rst +++ b/_sources/Unit4-Iteration/topic-4-1-while-loops.rst @@ -477,7 +477,7 @@ When you finish and run your program, what is a good guessing strategy for guess replit -For this project, you will need to use the |Scanner class| for input and |JuiceMindGuess| or |replitGuess| or another IDE of your choice. +For this project, you can use the |Scanner class| for input and |JuiceMindGuess| or |replitGuess| or another IDE of your choice. .. activecode:: challenge4-1-loop-GuessingGame-autograde :language: java