Skip to content

Commit 146eafc

Browse files
committed
fix a typo in ReadBundleId Operation
1 parent 59303d2 commit 146eafc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/AppStoreConnectCLI/Services/Operations/ReadBundleIdOperation.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ struct ReadBundleIdOperation: APIOperation {
1717
var errorDescription: String? {
1818
switch self {
1919
case .couldNotFindBundleId(let bundleId):
20-
return "Couldn't find bundleId: '\(bundleId)'."
21-
case .bundleIdNotUnique(let serial):
22-
return "The bundleId your provided '\(serial)' is not unique."
20+
return "Couldn't find Bundle ID: '\(bundleId)'."
21+
case .bundleIdNotUnique(let bundleId):
22+
return "The Bundle ID you provided '\(bundleId)' is not unique."
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)