Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Commit

Permalink
Fixed dots in incorrect places.
Browse files Browse the repository at this point in the history
  • Loading branch information
swd1tn002 committed Feb 5, 2024
1 parent 2f38aa4 commit 357b621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/part01/StringBasics.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public boolean parseYesOrNo(String text) {
/**
* Returns the FizzBuzz result for a given number.
*
* If the number is divisible by three, the result is "fizz." If the number is
* divisible by five, the result is "buzz." If the number is divisible by both
* three and five, the result is "fizzbuzz." Otherwise, the result is the number
* If the number is divisible by three, the result is "fizz". If the number is
* divisible by five, the result is "buzz". If the number is divisible by both
* three and five, the result is "fizzbuzz". Otherwise, the result is the number
* as a string.
*
* See more at https://en.wikipedia.org/wiki/Fizz_buzz
Expand Down

0 comments on commit 357b621

Please sign in to comment.