Merge pull request #11670 from natecook1000/nc-rev-77-2

This commit is contained in:
swift-ci
2017-09-19 10:15:59 -07:00
committed by GitHub
16 changed files with 191 additions and 96 deletions

View File

@@ -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"