From 64280edf52102b9a74f77176a93ab141f4ef0b97 Mon Sep 17 00:00:00 2001 From: Augusto Date: Fri, 17 Sep 2021 15:10:16 +0100 Subject: [PATCH] Fix typo --- subjects/recursivepower/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/recursivepower/README.md b/subjects/recursivepower/README.md index 580e17c9..b4e92614 100644 --- a/subjects/recursivepower/README.md +++ b/subjects/recursivepower/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a **recursive** function that returns the the value of `nb` to the power `power`. +Write a **recursive** function that returns the value of `nb` to the power of `power`. Negative powers will return `0`. Overflows do **not** have to be dealt with.