From 7f576fc2aed45e8972c6530246bf69755ef1baae Mon Sep 17 00:00:00 2001 From: miguel Date: Tue, 11 Apr 2023 10:18:42 +0100 Subject: [PATCH] temporary fix --- subjects/devops/numerical_operations/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/devops/numerical_operations/README.md b/subjects/devops/numerical_operations/README.md index e71cd0bfd..a17e6281b 100644 --- a/subjects/devops/numerical_operations/README.md +++ b/subjects/devops/numerical_operations/README.md @@ -23,7 +23,7 @@ print(numerical_operations.add(2, 2)) print(numerical_operations.subtract(10, 5)) print(numerical_operations.multiply(3, 4)) print(numerical_operations.power(3, 3)) -print(numerical_operations.square(3)) +print(numerical_operations.square(3)) # What we want is the square root of the number. ``` ```bash @@ -32,7 +32,7 @@ $ python test.py 5 12 27 -9 +1.73205080757 $ ```