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

@@ -29,10 +29,10 @@ extension String {
///
/// In Swift, every string provides a view of its contents as characters. In
/// this view, many individual characters---for example, "é", "", and
/// "🇮🇳"---can be made up of multiple Unicode code points. These code points
/// are combined by Unicode's boundary algorithms into *extended grapheme
/// clusters*, represented by the `Character` type. Each element of a
/// `CharacterView` collection is a `Character` instance.
/// "🇮🇳"---can be made up of multiple Unicode scalar values. These scalar
/// values are combined by Unicode's boundary algorithms into *extended
/// grapheme clusters*, represented by the `Character` type. Each element of
/// a `CharacterView` collection is a `Character` instance.
///
/// let flowers = "Flowers 💐"
/// for c in flowers.characters {