Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
EgzonArifi committed Nov 13, 2024
1 parent 1443651 commit 4cf6b2f
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 {
static func create(namePrefix: String? = .none,
middleName: String? = .none,
givenName: String? = .none,
familyName: String? = .none,
nameSuffix: String? = .none,
nickname: String? = .none,
phoneticRepresentation: PersonNameComponents? = .none) -> PersonNameComponents {
static func create(
namePrefix: String? = .none,
middleName: String? = .none,
givenName: String? = .none,
familyName: String? = .none,
nameSuffix: String? = .none,
nickname: String? = .none,
phoneticRepresentation: PersonNameComponents? = .none
) -> PersonNameComponents {
var components = PersonNameComponents()
components.namePrefix = namePrefix
components.familyName = familyName
Expand Down

0 comments on commit 4cf6b2f

Please sign in to comment.