From 817754c9ce8ab5497a1a0372e32dc52718b33675 Mon Sep 17 00:00:00 2001 From: Rakshaa Viswanathan <46165429+rakshaa2000@users.noreply.github.com> Date: Sat, 5 Sep 2020 10:24:12 +0530 Subject: [PATCH] documentation update 1 Co-authored-by: David Leal --- greedy_algorithms/jumpgame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {