Skip to content

Commit

Permalink
Applying suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
manumafe98 committed Feb 8, 2024
1 parent d666c85 commit e2ceb2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exercises/concept/squeaky-clean/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@

## 2. Convert kebab-case to camel-case

- Check the [Character][chars-docs] documentation for a method to convert a character to upper case.
- Check the [Character][chars-docs] documentation for a method to convert a character to upper case. Remember it is a static method.

## 3. Convert leetspeak to normal text

- Check the [Character][chars-docs] documentation for a method to detect when a character is a digit.
- Check the [Character][chars-docs] documentation for a method to detect when a character is a digit. Remember it is a static method.

## 4. Omit characters that are not letters

- Check the [Character][chars-docs] documentation for a method to detect when a character is a letter.
- Check the [Character][chars-docs] documentation for a method to detect when a character is a letter. Remember it is a static method.

[chars-docs]: https://docs.oracle.com/en/java/javase/14/docs/api/java.base/java/lang/Character.html
[chars-tutorial]: https://docs.oracle.com/javase/tutorial/java/data/characters.html
Expand Down

0 comments on commit e2ceb2b

Please sign in to comment.