Skip to content

Commit cd50557

Browse files
authored
Fix syntax error in comment code
Closing parentheses is missing in the example code.
1 parent 43526d0 commit cd50557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/StringInterpolation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/// fileprivate mutating func appendInterpolation(
4848
/// escaped value: String, asASCII forceASCII: Bool = false) {
4949
/// for char in value.unicodeScalars {
50-
/// appendInterpolation(char.escaped(asASCII: forceASCII)
50+
/// appendInterpolation(char.escaped(asASCII: forceASCII))
5151
/// }
5252
/// }
5353
/// }

0 commit comments

Comments
 (0)