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.