From b529e6ecf7f5967052b9c4c40349c7d15004f7a9 Mon Sep 17 00:00:00 2001 From: Hamza elkhatri <40549481+Hamzaelkhatri@users.noreply.github.com> Date: Tue, 5 Jul 2022 17:10:26 +0100 Subject: [PATCH] rewrite description --- subjects/isthesquareachild/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/isthesquareachild/README.md b/subjects/isthesquareachild/README.md index 80599e0b..76f90906 100644 --- a/subjects/isthesquareachild/README.md +++ b/subjects/isthesquareachild/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `IsTheSquareAChild` that takes a number and returns `true` if the number is a square and `false` otherwise. +Write a function `IsTheSquareAChild` that takes two numbers and returns `true` if the second number is the square of the first and `false` otherwise. - The function should return `false` if the number is negative. - Check only if the first parameter is the square of the second one.