mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Merge pull request #11670 from natecook1000/nc-rev-77-2
This commit is contained in:
@@ -281,8 +281,8 @@ extension Unicode.UTF8 : UnicodeCodec {
|
||||
/// byte is a continuation byte.
|
||||
///
|
||||
/// let eAcute = "é"
|
||||
/// for codePoint in eAcute.utf8 {
|
||||
/// print(codePoint, UTF8.isContinuation(codePoint))
|
||||
/// for codeUnit in eAcute.utf8 {
|
||||
/// print(codeUnit, UTF8.isContinuation(codeUnit))
|
||||
/// }
|
||||
/// // Prints "195 false"
|
||||
/// // Prints "169 true"
|
||||
|
||||
Reference in New Issue
Block a user