We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a751b07 + ec78f49 commit 0958bddCopy full SHA for 0958bdd
stdlib/public/core/CompilerProtocols.swift
@@ -117,7 +117,7 @@ public protocol RawRepresentable<RawValue> {
117
/// }
118
///
119
/// print(PaperSize(rawValue: "Legal"))
120
- /// // Prints "Optional("PaperSize.Legal")"
+ /// // Prints "Optional(PaperSize.Legal)"
121
122
/// print(PaperSize(rawValue: "Tabloid"))
123
/// // Prints "nil"
@@ -658,7 +658,7 @@ public protocol ExpressibleByArrayLiteral {
658
659
/// let countryCodes = ["BR": "Brazil", "GH": "Ghana",
660
/// "JP": "Japan", "US": "United States"]
661
-/// // 'countryCodes' has type [String: String]
+/// // 'countryCodes' has type '[String: String]'
662
663
/// print(countryCodes["BR"]!)
664
/// // Prints "Brazil"
0 commit comments