fix(curriculum): Typo in learn the bisection method step 18 (#55854)

This commit is contained in:
Sanjeev Murmu 2024-08-14 12:15:49 +05:30 committed by GitHub
parent 041a841995
commit cb277da4be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@ dashedName: step-18
# --description--
Create an `else` clause to handle the case where the value of `root` is not `None`, indicating that a root hass been found. If it is not `None`, print the message `'The square root of {square_target} is approximately {root}'`. Remember to format using an f-string.
Create an `else` clause to handle the case where the value of `root` is not `None`, indicating that a root has been found. If it is not `None`, print the message `'The square root of {square_target} is approximately {root}'`. Remember to format using an f-string.
# --hints--