From 2100d5b547d27dc48dde9c08b426c3e382086b13 Mon Sep 17 00:00:00 2001 From: Jim Hays Date: Mon, 24 Apr 2023 16:48:53 -0400 Subject: [PATCH] Fix typo in error message: 'Unkown' -> 'Unknown' --- src/Api/Controllers/OrganizationConnectionsController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Api/Controllers/OrganizationConnectionsController.cs b/src/Api/Controllers/OrganizationConnectionsController.cs index 5206cb51a..4c04a2497 100644 --- a/src/Api/Controllers/OrganizationConnectionsController.cs +++ b/src/Api/Controllers/OrganizationConnectionsController.cs @@ -101,7 +101,7 @@ public class OrganizationConnectionsController : Controller case OrganizationConnectionType.Scim: return await CreateOrUpdateOrganizationConnectionAsync(organizationConnectionId, model); default: - throw new BadRequestException($"Unkown Organization connection Type: {model.Type}"); + throw new BadRequestException($"Unknown Organization connection Type: {model.Type}"); } } @@ -127,7 +127,7 @@ public class OrganizationConnectionsController : Controller case OrganizationConnectionType.Scim: return new OrganizationConnectionResponseModel(connection, typeof(ScimConfig)); default: - throw new BadRequestException($"Unkown Organization connection Type: {type}"); + throw new BadRequestException($"Unknown Organization connection Type: {type}"); } }