From 2c79505364fe0364bf4b4adb59af704bc2344795 Mon Sep 17 00:00:00 2001 From: hozlucas28 Date: Wed, 11 Sep 2024 15:14:46 -0300 Subject: [PATCH] doc(getUserInputStr): add missing parameter --- libs/utilities.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/utilities.h b/libs/utilities.h index a1840f6..70fc8b2 100644 --- a/libs/utilities.h +++ b/libs/utilities.h @@ -39,6 +39,7 @@ void fillDashboard(TGame* pGame, int with); * string. The user's input is validated using the provided validator function. * * @param message The message to display as a prompt to the user. + * @param onInvalidMessage The message to display when the user input is invalid. * @param strLength The maximum length of the string to be inputted by the user. * @param validator A function pointer to a validator function that takes a * string as input and returns an integer. The validator function should return