File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ extension String {
267
267
/// strings. See the `getLineStart(_:end:contentsEnd:for:)` method for
268
268
/// additional information.
269
269
///
270
- /// Case transformations aren’ t guaranteed to be symmetrical or to produce
270
+ /// Case transformations aren' t guaranteed to be symmetrical or to produce
271
271
/// strings of the same lengths as the originals. See lowercased for an
272
272
/// example.
273
273
public var capitalized : String {
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public protocol StringProtocol
77
77
/// lifetime of the closure. Do not escape it from the closure for later
78
78
/// use.
79
79
///
80
- /// - Parameter body: A closure with an pointer parameter that points to a
80
+ /// - Parameter body: A closure with a pointer parameter that points to a
81
81
/// null-terminated sequence of UTF-8 code units. If `body` has a return
82
82
/// value, it is used as the return value for the `withCString(_:)`
83
83
/// method. The pointer argument is valid only for the duration of the
@@ -94,7 +94,7 @@ public protocol StringProtocol
94
94
/// use.
95
95
///
96
96
/// - Parameters:
97
- /// - body: A closure with an pointer parameter that points to a
97
+ /// - body: A closure with a pointer parameter that points to a
98
98
/// null-terminated sequence of code units. If `body` has a return
99
99
/// value, it is used as the return value for the
100
100
/// `withCString(encodedAs:_:)` method. The pointer argument is valid
Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ extension String.CharacterView : BidirectionalCollection {
284
284
285
285
// Unified CJK Han ideographs, common and some supplemental, amongst
286
286
// others:
287
- // 0x3400– 0xA4CF
287
+ // 0x3400- 0xA4CF
288
288
if 0x3400 <= x && x <= 0xa4cf {
289
289
return true
290
290
}
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ public struct Substring : StringProtocol {
213
213
/// lifetime of the closure. Do not escape it from the closure for later
214
214
/// use.
215
215
///
216
- /// - Parameter body: A closure with an pointer parameter that points to a
216
+ /// - Parameter body: A closure with a pointer parameter that points to a
217
217
/// null-terminated sequence of UTF-8 code units. If `body` has a return
218
218
/// value, it is used as the return value for the `withCString(_:)`
219
219
/// method. The pointer argument is valid only for the duration of the
@@ -238,7 +238,7 @@ public struct Substring : StringProtocol {
238
238
/// use.
239
239
///
240
240
/// - Parameters:
241
- /// - body: A closure with an pointer parameter that points to a
241
+ /// - body: A closure with a pointer parameter that points to a
242
242
/// null-terminated sequence of code units. If `body` has a return
243
243
/// value, it is used as the return value for the
244
244
/// `withCString(encodedAs:_:)` method. The pointer argument is valid
You can’t perform that action at this time.
0 commit comments