diff --git a/src/main/scala/scalatutorial/sections/FunctionalLoops.scala b/src/main/scala/scalatutorial/sections/FunctionalLoops.scala index 77c9fb9c..a1fb0bdb 100644 --- a/src/main/scala/scalatutorial/sections/FunctionalLoops.scala +++ b/src/main/scala/scalatutorial/sections/FunctionalLoops.scala @@ -76,7 +76,7 @@ object FunctionalLoops extends ScalaTutorialSection { * - Start with an initial ''estimate'' `y` (let's pick `y = 1`). * - Repeatedly improve the estimate by taking the mean of `y` and `x/y`. * - * Example: + * Example: Evaluation of the square root of 2 (x = 2): * * {{{ * Estimation Quotient Mean