From 06986eca6da37c931b93f13c81d375257f6cf213 Mon Sep 17 00:00:00 2001 From: Pete Date: Mon, 9 Oct 2023 17:54:44 -0400 Subject: [PATCH] Update exercises/concept/squeaky-clean/.docs/introduction.md Co-authored-by: Cedd Burge --- exercises/concept/squeaky-clean/.docs/introduction.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/concept/squeaky-clean/.docs/introduction.md b/exercises/concept/squeaky-clean/.docs/introduction.md index 80399351..ea4c06e9 100644 --- a/exercises/concept/squeaky-clean/.docs/introduction.md +++ b/exercises/concept/squeaky-clean/.docs/introduction.md @@ -4,7 +4,8 @@ The `Char` type represents the smallest addressable components of text. Multiple `Char`s can comprise a string such as `"word"` or they can be -processed independently. Their literals have single quotes e.g. `'A'`. +processed independently. +Their literals have single quotes e.g. `'A'`. Elm `Char` and `String` support Unicode encoding so in addition to the latin character set pretty much all the writing systems in use can be represented, e.g. the Greek letter `'β'`.