Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a typo in the name of the transformingFirstLetter method #90

Merged
merged 1 commit into from
Jun 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sources/_OpenAPIGeneratorCore/Extensions/String.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ extension String {

/// Returns a copy of the string with the first letter uppercased.
var uppercasingFirstLetter: String {
tranformingFirstLetter { $0.uppercased() }
transformingFirstLetter { $0.uppercased() }
}

/// Returns a copy of the string with the first letter lowercased.
var lowercasingFirstLetter: String {
tranformingFirstLetter { $0.lowercased() }
transformingFirstLetter { $0.lowercased() }
}
}

Expand All @@ -44,7 +44,7 @@ fileprivate extension String {
/// Returns a copy of the string with the first letter modified by
/// the specified closure.
/// - Parameter transformation: A closure that modifies the first letter.
func tranformingFirstLetter<T>(_ transformation: (Character) -> T) -> String where T: StringProtocol {
func transformingFirstLetter<T>(_ transformation: (Character) -> T) -> String where T: StringProtocol {
guard let firstLetterIndex = self.firstIndex(where: \.isLetter) else {
return self
}
Expand Down