Skip to content

Commit 1bd6856

Browse files
authored
Merge pull request #181 from jozefizso/typos
Fix small typos in messages
2 parents d3cd68a + 1615a9d commit 1bd6856

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/AzureSignTool/SignCommand.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ internal sealed class SignCommand
3030
[Option("-kvs | --azure-key-vault-client-secret", "The Client Secret to authenticate to the Azure Key Vault.", CommandOptionType.SingleValue)]
3131
public (bool Present, string Value) KeyVaultClientSecret { get; set; }
3232

33-
[Option("-kvt | --azure-key-vault-tenant-id", "The Tenand Id to authenticate to the Azure Key Vault.", CommandOptionType.SingleValue)]
33+
[Option("-kvt | --azure-key-vault-tenant-id", "The Tenant Id to authenticate to the Azure Key Vault.", CommandOptionType.SingleValue)]
3434
public (bool Present, string Value) KeyVaultTenantId { get; set; }
3535

3636
[Option("-kvc | --azure-key-vault-certificate", "The name of the certificate in Azure Key Vault.", CommandOptionType.SingleValue), Required]
@@ -311,7 +311,7 @@ public async Task<int> OnExecuteAsync(CommandLineApplication app, IConsole conso
311311
logger.LogError("The Publisher Identity in the AppxManifest.xml does not match the subject on the certificate.");
312312
break;
313313
case TRUST_E_SUBJECT_FORM_UNKNOWN:
314-
logger.LogError("The file cannot be signed because it is not a recoginized file type for signing or it is corrupt.");
314+
logger.LogError("The file cannot be signed because it is not a recognized file type for signing or it is corrupt.");
315315
break;
316316
}
317317

@@ -393,7 +393,7 @@ private static ErrorOr<X509Certificate2Collection> GetAdditionalCertificates(IEn
393393
}
394394
catch (CryptographicException e)
395395
{
396-
logger.LogError(e, "An exception occured while including an additional certificate.");
396+
logger.LogError(e, "An exception occurred while including an additional certificate.");
397397
return e;
398398
}
399399

0 commit comments

Comments
 (0)