From 1d3aa2f359388b67c16000556830645382cd5c4f Mon Sep 17 00:00:00 2001 From: stephencelis Date: Mon, 7 Mar 2022 19:51:01 +0000 Subject: [PATCH] Run swift-format --- .../Parsing/Documentation.docc/Articles/Parsers/CaseIterable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Parsing/Documentation.docc/Articles/Parsers/CaseIterable.md b/Sources/Parsing/Documentation.docc/Articles/Parsers/CaseIterable.md index b5e77923ff..120687a49b 100644 --- a/Sources/Parsing/Documentation.docc/Articles/Parsers/CaseIterable.md +++ b/Sources/Parsing/Documentation.docc/Articles/Parsers/CaseIterable.md @@ -40,7 +40,7 @@ try Parse { .parse("123,1") // (123, .admin) ``` -The `parser()` method on `CaseIterable` is overloaded to work on a variety of string representations +The `parser()` method on `CaseIterable` is overloaded to work on a variety of string representations in order to be as efficient as possible, including `Substring`, `UTF8View`, and more general collections of UTF-8 code units (see for more info).