Skip to content

Commit 53c14b0

Browse files
Fix typos (#122)
* Update codesigngroup.go * Update codesigngroup.go
1 parent c806369 commit 53c14b0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

codesigndoc/codesigngroup.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,11 @@ func collectExportCodeSignGroups(archive Archive, installedCertificates []certif
327327
if len(certificateOptions) == 1 {
328328
selectedCertificateOption = certificateOptions[0]
329329

330-
fmt.Printf("Codesign Indentity for %s ipa export: %s\n", selectedExportMethod, selectedCertificateOption)
330+
fmt.Printf("Codesign Identity for %s ipa export: %s\n", selectedExportMethod, selectedCertificateOption)
331331
} else {
332332
sort.Strings(certificateOptions)
333333

334-
question := fmt.Sprintf("Select the Codesign Indentity for %s ipa export", selectedExportMethod)
334+
question := fmt.Sprintf("Select the Codesign Identity for %s ipa export", selectedExportMethod)
335335
selectedCertificateOption, err = goinp.SelectFromStringsWithDefault(question, 1, certificateOptions)
336336
if err != nil {
337337
return nil, fmt.Errorf("failed to read input: %s", err)
@@ -347,7 +347,7 @@ func collectExportCodeSignGroups(archive Archive, installedCertificates []certif
347347
}
348348
}
349349
if selectedCertificate == nil {
350-
return nil, errors.New("failed to find selected Codesign Indentity")
350+
return nil, errors.New("failed to find selected Codesign Identity")
351351
}
352352

353353
// Select Profiles

codesigndocuitests/codesigngroup.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,11 @@ func collectExportCodeSignGroups(testRunner IOSTestRunner, installedCertificates
242242
if len(certificateOptions) == 1 {
243243
selectedCertificateOption = certificateOptions[0]
244244

245-
fmt.Printf("Codesign Indentity for %s signing: %s\n", selectedCodeSignMethod, selectedCertificateOption)
245+
fmt.Printf("Codesign Identity for %s signing: %s\n", selectedCodeSignMethod, selectedCertificateOption)
246246
} else {
247247
sort.Strings(certificateOptions)
248248

249-
question := fmt.Sprintf("Select the Codesign Indentity for %s method", selectedCodeSignMethod)
249+
question := fmt.Sprintf("Select the Codesign Identity for %s method", selectedCodeSignMethod)
250250
selectedCertificateOption, err = goinp.SelectFromStringsWithDefault(question, 1, certificateOptions)
251251
if err != nil {
252252
return nil, fmt.Errorf("failed to read input: %s", err)
@@ -262,7 +262,7 @@ func collectExportCodeSignGroups(testRunner IOSTestRunner, installedCertificates
262262
}
263263
}
264264
if selectedCertificate == nil {
265-
return nil, errors.New("failed to find selected Codesign Indentity")
265+
return nil, errors.New("failed to find selected Codesign Identity")
266266
}
267267

268268
// Select Profiles

0 commit comments

Comments
 (0)