Skip to content

Commit

Permalink
change greeting
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSorb committed Jan 18, 2024
1 parent 2f11e55 commit 5f88405
Show file tree
Hide file tree
Showing 12 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.gradle
app/build/*
app/!gradle/wrapper/gradle-wrapper.jar
app/!**/src/main/**/build/
Expand Down
Binary file modified app/.gradle/8.4/checksums/checksums.lock
Binary file not shown.
Binary file modified app/.gradle/8.4/dependencies-accessors/dependencies-accessors.lock
Binary file not shown.
Binary file modified app/.gradle/8.4/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified app/.gradle/8.4/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified app/.gradle/8.4/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified app/.gradle/8.4/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified app/.gradle/8.4/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified app/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified app/.gradle/file-system.probe
Binary file not shown.
Binary file modified app/.gradle/workspace-id.txt.lock
Binary file not shown.
2 changes: 1 addition & 1 deletion app/src/main/java/hexlet/code/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private String getUserInput() {
return userInput;
}
private void winGame() {
System.out.println("Congratulations, " + this.userName + " !");
System.out.println("Congratulations, " + this.userName + "!");
}
private void wrongAnswer(String userAnswer, String rightAnswer) {
System.out.println("'" + userAnswer + "' is wrong answer ;(. Correct answer was '"
Expand Down

0 comments on commit 5f88405

Please sign in to comment.