Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yllfejziu committed Nov 15, 2024
1 parent c7b9d9e commit 1c8d031
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions Sources/Core/PersonNameComponents+Extension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ public extension PersonNameComponents {
}

public extension PersonNameComponents {
init(namePrefix: String? = .none,
middleName: String? = .none,
givenName: String? = .none,
familyName: String? = .none,
nameSuffix: String? = .none,
nickname: String? = .none,
phoneticRepresentation: PersonNameComponents? = .none) {
init(
namePrefix: String? = .none,
middleName: String? = .none,
givenName: String? = .none,
familyName: String? = .none,
nameSuffix: String? = .none,
nickname: String? = .none,
phoneticRepresentation: PersonNameComponents? = .none
) {
self.init()
self.namePrefix = namePrefix
self.familyName = familyName
Expand Down

0 comments on commit 1c8d031

Please sign in to comment.