fix(curriculum): Clarified language around printing result (#55040)

This commit is contained in:
Ted Miller
2024-05-31 01:38:33 -07:00
committed by GitHub
parent 72c862e144
commit 8078b0400b
@@ -7,7 +7,7 @@ dashedName: step-21
# --description--
Call the `square_root_bisection` function with the `N` variable as the argument and print the result.
Call the `square_root_bisection` function with the `N` variable as the argument. This will print the result to the console.
Experiment with larger values.
@@ -15,7 +15,7 @@ With this, you have successfully implemented the bisection method to find the sq
# --hints--
You should call the `square_root_bisection` function with the `N` variable as the argument and print the result.
You should call the `square_root_bisection` function with the variable `N` as the argument.
```js
({