From 8b6f6ba469500928b073f911fb7e93de4f917e06 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Fri, 2 Jul 2021 18:22:42 +0100 Subject: [PATCH] Update README.md --- subjects/sqrt/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/sqrt/README.md b/subjects/sqrt/README.md index 7434a071..7392215d 100644 --- a/subjects/sqrt/README.md +++ b/subjects/sqrt/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that returns the square root of the `int` passed as parameter if that square root is a whole number. Otherwise it returns `0`. +Write a function that returns the square root of the `int` passed as parameter, if that square root is a whole number. Otherwise it returns `0`. ### Expected function