Skip to content

Conversation

@emancilla77
Copy link

Closes: #78

Copy link
Contributor

@jody jody left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see inline comments and review adherence to coding conventions.

Here's a screenshot from Checkstyle:
image

Comment on lines +25 to +43
/**
Game Logic Pseudocode:
int UserScore = 100; //initial score
String WordToGuess = WordGenerator(); Generates word to guess
while (MaxAttempts >= UserAttempts){
prompt user for guess
if guess is correct
return score
break
else
increment userattempts
score = score - 10; reduce 10 points each missed attempt
}
*/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This contains potentially useful information, but isn't consistent with our coding conventions. Information like this probably best appears in the associated Issue, rather than in the code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[TASK] Internal Structural Design of Word Guess game

3 participants