diff --git a/greedy_algorithms/jumpgame.cpp b/greedy_algorithms/jumpgame.cpp index 94b3b2685..ee6bf2bfb 100644 --- a/greedy_algorithms/jumpgame.cpp +++ b/greedy_algorithms/jumpgame.cpp @@ -21,7 +21,7 @@ */ /** * @brief This function implements the above algorithm - * @param vector of nums containing the maximum jump (in steps) from that index + * @param array of numbers containing the maximum jump (in steps) from that index * @return returns bool value whether final index can be reached or not */ bool canJump(std::vector nums) {