Skip to content

Commit

Permalink
use the term 'lowercase' consistently across the exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
tasxatzial committed Sep 21, 2024
1 parent ad8dfbe commit a4e3427
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/squeaky-clean/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ If it contains no hyphens, you should return it as it is. You can check this usi

You can filter characters using [`Character/isLetter`][java-isletter] as a predicate.

## 5. Omit Greek lower case letters
## 5. Omit Greek lowercase letters

The lower-case Greek letters are Unicode points `\u03B1` to `\u03C9`, or integer values 945 through 969.
The Greek lowercase letters are Unicode points `\u03B1` to `\u03C9`, or integer values 945 through 969.

[str-join]: https://clojuredocs.org/clojure.string/join
[str-upper-case]: https://clojuredocs.org/clojure.string/upper-case
Expand Down
2 changes: 1 addition & 1 deletion exercises/concept/squeaky-clean/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Note: The underscores must be preserved from the previous step.
;; => ""
```

## 5. Omit Greek lower case letters
## 5. Omit Greek lowercase letters

Modify the `clean` function to omit any Greek letters in the range 'α' to 'ω'.

Expand Down

0 comments on commit a4e3427

Please sign in to comment.