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.
1 parent 36ce0fc commit 3dee63dCopy full SHA for 3dee63d
Sources/generate-swift-syntax-builder/String+Extensions.swift
@@ -14,5 +14,6 @@ import Foundation
14
15
extension StringProtocol {
16
var withFirstCharacterLowercased: String { prefix(1).lowercased() + dropFirst() }
17
+ var withFirstCharacterUppercased: String { prefix(1).uppercased() + dropFirst() }
18
var backticked: String { "`\(self)`" }
19
}
0 commit comments