From cb277da4bedb0c34b85ec6116fd788998fbbe380 Mon Sep 17 00:00:00 2001 From: Sanjeev Murmu Date: Wed, 14 Aug 2024 12:15:49 +0530 Subject: [PATCH] fix(curriculum): Typo in learn the bisection method step 18 (#55854) --- .../65ef1d924ff2e5c7031c6ce8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef1d924ff2e5c7031c6ce8.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef1d924ff2e5c7031c6ce8.md index 3efe2d506ab..7fedc6c1242 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef1d924ff2e5c7031c6ce8.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-the-bisection-method-by-finding-the-square-root-of-a-number/65ef1d924ff2e5c7031c6ce8.md @@ -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--