Skip to content

Commit 5d53691

Browse files
hozlucas28GuidolinarestefhuergoTiagoGiannotti
committed
fix: rename parameter name
Co-authored-by: Guidolinares <[email protected]> Co-authored-by: tefhuergo <[email protected]> Co-authored-by: Tiago Giannotti <[email protected]>
1 parent c2f543a commit 5d53691

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libs/validators.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ int validateGeneration(char* generation) {
3333
return generationInt >= INT_MIN && generationInt <= INT_MAX;
3434
}
3535

36-
int validatePattern(char* userInput) {
36+
int validatePattern(char* pattern) {
3737
char* options[] = {"glider", "toad", "press", "glider cannon"};
38-
return isStrIn(userInput, options, 4);
38+
return isStrIn(pattern, options, 4);
3939
}
4040

4141
int validatePlatform(char* userInput) {

libs/validators.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int validateGeneration(char* generation);
3636
*
3737
* @return 1 if the pattern is valid, 0 otherwise.
3838
*/
39-
int validatePattern(char* userInput);
39+
int validatePattern(char* pattern);
4040

4141
// TODO: Documentation
4242
int validatePlatform(char* platform);

0 commit comments

Comments
 (0)