From bf6a1405d8f765fcf6f426fd9ba5015d94b40e64 Mon Sep 17 00:00:00 2001 From: Sean Anderson Date: Fri, 27 Oct 2023 09:58:57 +1300 Subject: [PATCH] Correct typo of enviorments to environments --- .../AzureADConnectSyncDocumenter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AzureADConnectSyncDocumenter/AzureADConnectSyncDocumenter.cs b/src/AzureADConnectSyncDocumenter/AzureADConnectSyncDocumenter.cs index b86f709..ab1a1b5 100644 --- a/src/AzureADConnectSyncDocumenter/AzureADConnectSyncDocumenter.cs +++ b/src/AzureADConnectSyncDocumenter/AzureADConnectSyncDocumenter.cs @@ -380,7 +380,7 @@ orderby name var configEnvironment = production.Any(productionConnector => (string)productionConnector.Element("name") == (string)connector.Element("name")) ? ConfigEnvironment.PilotAndProduction : ConfigEnvironment.PilotOnly; if (configEnvironment == ConfigEnvironment.PilotOnly) { - Logger.Instance.WriteWarning("The connector '{0}' only exists in the first set of configuration files. If this is not expected, please edit the config files to match names of this connector in the two enviorments as instructed in the ReadMe wiki.", (string)connector.Element("name")); + Logger.Instance.WriteWarning("The connector '{0}' only exists in the first set of configuration files. If this is not expected, please edit the config files to match names of this connector in the two environments as instructed in the ReadMe wiki.", (string)connector.Element("name")); } this.ProcessConnectorConfiguration(connector, configEnvironment); @@ -390,7 +390,7 @@ orderby name foreach (var connector in production) { - Logger.Instance.WriteWarning("The connector '{0}' only exists in the second set of configuration files and will be documented as a connector that is deleted from the configuration. If this is not intended, please edit the config files to match names of this connector in the two enviorments as instructed in the ReadMe wiki.", (string)connector.Element("name")); + Logger.Instance.WriteWarning("The connector '{0}' only exists in the second set of configuration files and will be documented as a connector that is deleted from the configuration. If this is not intended, please edit the config files to match names of this connector in the two environments as instructed in the ReadMe wiki.", (string)connector.Element("name")); this.ProcessConnectorConfiguration(connector, ConfigEnvironment.ProductionOnly); }