From 6dd7ce40d72030e1bab3c37de8f9ea03f9feb7ca Mon Sep 17 00:00:00 2001 From: Rachel Irene Lunan Date: Tue, 15 Jan 2019 16:53:11 -0600 Subject: [PATCH] fixed spelling error (#29863) --- .../index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/catch-arguments-passed-in-the-wrong-order-when-calling-a-function/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/catch-arguments-passed-in-the-wrong-order-when-calling-a-function/index.md index 007d93b75b..76ce1fa57f 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/catch-arguments-passed-in-the-wrong-order-when-calling-a-function/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/debugging/catch-arguments-passed-in-the-wrong-order-when-calling-a-function/index.md @@ -11,7 +11,7 @@ function raiseToPower(b, e) { - The above function is used to raise the base number `b` to the power of the exponent `e`. - The function must be called specifically with variables in the correct order. Otherwise the function will mix up both variables and return an undesired answer. -- Make sure tha variable `power` is implementing the `raiseToPower` function correctly. +- Make sure the variable `power` is implementing the `raiseToPower` function correctly. ## Solution: ```javascript