From 9e38cd304b2ab4d6f0ef9400fcd97cc824f1092c Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:32 -0700 Subject: [PATCH 01/17] Fix occured typo in ApplicationEventArgs.cs Signed-off-by: SAY-5 --- src/Spring/Spring.Core/Context/ApplicationEventArgs.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spring/Spring.Core/Context/ApplicationEventArgs.cs b/src/Spring/Spring.Core/Context/ApplicationEventArgs.cs index ed31642e8..663834295 100644 --- a/src/Spring/Spring.Core/Context/ApplicationEventArgs.cs +++ b/src/Spring/Spring.Core/Context/ApplicationEventArgs.cs @@ -40,10 +40,10 @@ public ApplicationEventArgs() } /// - /// The date and time when the event occured. + /// The date and time when the event occurred. /// /// - /// The date and time when the event occured. + /// The date and time when the event occurred. /// public DateTime TimeStamp { From 785afd5793c2d41a1c547e9b6f07b9e81b9b1f4a Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:34 -0700 Subject: [PATCH 02/17] Fix occured typo in ConfigurationUtils.cs Signed-off-by: SAY-5 --- src/Spring/Spring.Core/Util/ConfigurationUtils.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Spring/Spring.Core/Util/ConfigurationUtils.cs b/src/Spring/Spring.Core/Util/ConfigurationUtils.cs index 4767d65ed..2b78a493c 100644 --- a/src/Spring/Spring.Core/Util/ConfigurationUtils.cs +++ b/src/Spring/Spring.Core/Util/ConfigurationUtils.cs @@ -101,7 +101,7 @@ public static void RefreshSection(string sectionName) /// The message to display to the client when the exception is thrown. /// The inner exception. /// Name of the configuration file. - /// The line where exception occured. + /// The line where exception occurred. /// Configuration exception. public static Exception CreateConfigurationException(string message, Exception inner, string fileName, int line) { @@ -113,7 +113,7 @@ public static Exception CreateConfigurationException(string message, Exception i /// /// The message to display to the client when the exception is thrown. /// Name of the configuration file. - /// The line where exception occured. + /// The line where exception occurred. /// Configuration exception. public static Exception CreateConfigurationException(string message, string fileName, int line) { @@ -125,7 +125,7 @@ public static Exception CreateConfigurationException(string message, string file /// /// The message to display to the client when the exception is thrown. /// The inner exception. - /// XML node where exception occured. + /// XML node where exception occurred. /// Configuration exception. public static Exception CreateConfigurationException(string message, Exception inner, XmlNode node) { @@ -136,7 +136,7 @@ public static Exception CreateConfigurationException(string message, Exception i /// Creates the configuration exception. /// /// The message to display to the client when the exception is thrown. - /// XML node where exception occured. + /// XML node where exception occurred. /// Configuration exception. public static Exception CreateConfigurationException(string message, XmlNode node) { From 0c0868ac285818addad20497ce1c9a1ed2e17219 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:36 -0700 Subject: [PATCH 03/17] Fix occured typo in Result.cs Signed-off-by: SAY-5 --- src/Spring/Spring.Web/Web/Support/Result.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Web/Web/Support/Result.cs b/src/Spring/Spring.Web/Web/Support/Result.cs index 77c50ae0d..35080a25d 100644 --- a/src/Spring/Spring.Web/Web/Support/Result.cs +++ b/src/Spring/Spring.Web/Web/Support/Result.cs @@ -374,7 +374,7 @@ protected virtual StringBuilder BuildUrlParameter(StringBuilder url, string key, /// /// the context to be used for evaluation. /// the string that might need evaluation - /// the evaluation result. Unodified if no evalution occured. + /// the evaluation result. Unodified if no evalution occurred. protected virtual object ResolveValueIfNecessary(object context, string value) { return ResolveSpELRuntimeExpressionIfNecessary(context, value); From 762c2c5a4beb4df4dc44cfe6df172e7cf30cd89c Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:38 -0700 Subject: [PATCH 04/17] Fix occured typo in PropertyOverrideConfigurer.cs Signed-off-by: SAY-5 --- .../Objects/Factory/Config/PropertyOverrideConfigurer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Objects/Factory/Config/PropertyOverrideConfigurer.cs b/src/Spring/Spring.Core/Objects/Factory/Config/PropertyOverrideConfigurer.cs index 346d25b26..54f394413 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Config/PropertyOverrideConfigurer.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Config/PropertyOverrideConfigurer.cs @@ -111,7 +111,7 @@ public class PropertyOverrideConfigurer : PropertyResourceConfigurer /// /// The properties to apply. /// - /// If an error occured. + /// If an error occurred. /// protected override void ProcessProperties( IConfigurableListableObjectFactory factory, NameValueCollection props) From 63ad436ea1f3c06ce8f4a4ab166394dac2ecac5f Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:40 -0700 Subject: [PATCH 05/17] Fix occured typo in AbstractApplicationContext.cs Signed-off-by: SAY-5 --- .../Spring.Core/Context/Support/AbstractApplicationContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Context/Support/AbstractApplicationContext.cs b/src/Spring/Spring.Core/Context/Support/AbstractApplicationContext.cs index 4c72f6400..b8a41f500 100644 --- a/src/Spring/Spring.Core/Context/Support/AbstractApplicationContext.cs +++ b/src/Spring/Spring.Core/Context/Support/AbstractApplicationContext.cs @@ -390,7 +390,7 @@ protected virtual void OnContextEvent(object source, ApplicationEventArgs e) { Delegate target = ContextEvent.GetInvocationList()[0]; Exception exception = exceptions[target]; - throw new ApplicationContextException(string.Format("An unhandled exception occured during processing application event {0} in handler {1}", e.GetType(), target.Method), exception); + throw new ApplicationContextException(string.Format("An unhandled exception occurred during processing application event {0} in handler {1}", e.GetType(), target.Method), exception); } } From 664fe5730293b2be010ad77d985af0de92e4c6bd Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:42 -0700 Subject: [PATCH 06/17] Fix occured typo in PropertyRetrievingFactoryObject.cs Signed-off-by: SAY-5 --- .../Objects/Factory/Config/PropertyRetrievingFactoryObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Objects/Factory/Config/PropertyRetrievingFactoryObject.cs b/src/Spring/Spring.Core/Objects/Factory/Config/PropertyRetrievingFactoryObject.cs index d0341afa5..762284b51 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Config/PropertyRetrievingFactoryObject.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Config/PropertyRetrievingFactoryObject.cs @@ -238,7 +238,7 @@ public override void AfterPropertiesSet() /// returned by this factory. /// /// - /// If an exception occured during object creation. + /// If an exception occurred during object creation. /// /// The object returned by this factory. protected override object CreateInstance() From ebcb04c2b27e55d079caa37d8cc9e2b973f9699a Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:44 -0700 Subject: [PATCH 07/17] Fix occured typo in LocalSessionFactoryObject.cs Signed-off-by: SAY-5 --- .../Data/NHibernate/LocalSessionFactoryObject.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/LocalSessionFactoryObject.cs b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/LocalSessionFactoryObject.cs index f4163b5e5..1f16aad29 100644 --- a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/LocalSessionFactoryObject.cs +++ b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/LocalSessionFactoryObject.cs @@ -965,7 +965,7 @@ public DataAccessException TranslateExceptionIfPossible(Exception ex) /// Will automatically apply a specified IAdoExceptionTranslator to a /// Hibernate ADOException, else rely on Hibernate's default translation. /// - /// The Hibernate exception that occured. + /// The Hibernate exception that occurred. /// A corresponding DataAccessException protected virtual DataAccessException ConvertHibernateException(HibernateException ex) { @@ -981,7 +981,7 @@ protected virtual DataAccessException ConvertHibernateException(HibernateExcepti /// Converts the ADO.NET access exception to an appropriate exception from the /// org.springframework.dao hierarchy. Can be overridden in subclasses. /// - /// ADOException that occured, wrapping underlying ADO.NET exception. + /// ADOException that occurred, wrapping underlying ADO.NET exception. /// /// the corresponding DataAccessException instance /// From 0be8a353a885952606d6dc41dbf6951eaeb4e8f5 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:46 -0700 Subject: [PATCH 08/17] Fix occured typo in CaoFactoryObject.cs Signed-off-by: SAY-5 --- src/Spring/Spring.Services/Remoting/CaoFactoryObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Services/Remoting/CaoFactoryObject.cs b/src/Spring/Spring.Services/Remoting/CaoFactoryObject.cs index 365db99e1..4cd53f801 100644 --- a/src/Spring/Spring.Services/Remoting/CaoFactoryObject.cs +++ b/src/Spring/Spring.Services/Remoting/CaoFactoryObject.cs @@ -72,7 +72,7 @@ public CaoFactoryObject() /// /// Callback method called once all factory properties have been set. /// - /// if an error occured + /// if an error occurred public void AfterPropertiesSet() { if (RemoteTargetName == null) From 23d662ed7ce19694b4828588686cb86829ab0d4a Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:48 -0700 Subject: [PATCH 09/17] Fix occured typo in DelegateFactoryObject.cs Signed-off-by: SAY-5 --- .../Spring.Core/Objects/Factory/Config/DelegateFactoryObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Objects/Factory/Config/DelegateFactoryObject.cs b/src/Spring/Spring.Core/Objects/Factory/Config/DelegateFactoryObject.cs index 4994595d6..a6025a019 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Config/DelegateFactoryObject.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Config/DelegateFactoryObject.cs @@ -79,7 +79,7 @@ public override void AfterPropertiesSet() /// Creates the delegate. /// /// - /// If an exception occured during object creation. + /// If an exception occurred during object creation. /// /// The object returned by this factory. /// From 4c7bee2ba8ce78b8cfd0df1f0ca8c6877c26e7b1 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:50 -0700 Subject: [PATCH 10/17] Fix occured typo in PropertyPlaceholderConfigurer.cs Signed-off-by: SAY-5 --- .../Objects/Factory/Config/PropertyPlaceholderConfigurer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Objects/Factory/Config/PropertyPlaceholderConfigurer.cs b/src/Spring/Spring.Core/Objects/Factory/Config/PropertyPlaceholderConfigurer.cs index ff9626f01..4dc806346 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Config/PropertyPlaceholderConfigurer.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Config/PropertyPlaceholderConfigurer.cs @@ -215,7 +215,7 @@ public bool IncludeAncestors /// /// The properties to apply. /// - /// If an error occured. + /// If an error occurred. /// protected override void ProcessProperties(IConfigurableListableObjectFactory factory, NameValueCollection props) { From 97d696dafb8141e1b489135c273fde0b6f641bb1 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:52 -0700 Subject: [PATCH 11/17] Fix occured typo in VariablePlaceholderConfigurer.cs Signed-off-by: SAY-5 --- .../Objects/Factory/Config/VariablePlaceholderConfigurer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Core/Objects/Factory/Config/VariablePlaceholderConfigurer.cs b/src/Spring/Spring.Core/Objects/Factory/Config/VariablePlaceholderConfigurer.cs index 5ed409772..b62e2fa00 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Config/VariablePlaceholderConfigurer.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Config/VariablePlaceholderConfigurer.cs @@ -223,7 +223,7 @@ public int Order /// used by the application context. /// /// - /// If an error occured. + /// If an error occurred. /// protected virtual void ProcessProperties(IConfigurableListableObjectFactory factory) { From b1aa69336d5c71c8b859aae9c22e045edd60105f Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:54 -0700 Subject: [PATCH 12/17] Fix occured typo in HibernateTxScopeTransactionManager.cs Signed-off-by: SAY-5 --- .../Data/NHibernate/HibernateTxScopeTransactionManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTxScopeTransactionManager.cs b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTxScopeTransactionManager.cs index 10b524a68..bf9489321 100644 --- a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTxScopeTransactionManager.cs +++ b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTxScopeTransactionManager.cs @@ -846,7 +846,7 @@ protected IDbTransaction GetIDbTransaction(ITransaction hibernateTx) /// Convert the given HibernateException to an appropriate exception from /// the Spring.Dao hierarchy. Can be overridden in subclasses. /// - /// The HibernateException that occured. + /// The HibernateException that occurred. /// The corresponding DataAccessException instance protected virtual DataAccessException ConvertHibernateAccessException(HibernateException ex) { @@ -866,7 +866,7 @@ protected virtual DataAccessException ConvertHibernateAccessException(HibernateE /// Convert the given ADOException to an appropriate exception from the /// the Spring.Dao hierarchy. Can be overridden in subclasses. /// - /// The ADOException that occured, wrapping the underlying + /// The ADOException that occurred, wrapping the underlying /// ADO.NET thrown exception. /// The translator to convert hibernate ADOExceptions. /// From 5972cb5edb4fafd08d41944712f4c2d3fe9d58dc Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:56 -0700 Subject: [PATCH 13/17] Fix occured typo in HibernateAccessor.cs Signed-off-by: SAY-5 --- .../Data/NHibernate/HibernateAccessor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateAccessor.cs b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateAccessor.cs index e98975d01..87eb0d74c 100644 --- a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateAccessor.cs +++ b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateAccessor.cs @@ -391,7 +391,7 @@ protected void FlushIfNecessary(ISession session, bool existingTransaction) /// org.springframework.dao hierarchy. Will automatically detect /// wrapped ADO.NET Exceptions and convert them accordingly. /// - /// HibernateException that occured. + /// HibernateException that occurred. /// /// The corresponding DataAccessException instance /// @@ -413,7 +413,7 @@ public virtual DataAccessException ConvertHibernateAccessException(HibernateExce /// Converts the ADO.NET access exception to an appropriate exception from the /// org.springframework.dao hierarchy. Can be overridden in subclasses. /// - /// ADOException that occured, wrapping underlying ADO.NET exception. + /// ADOException that occurred, wrapping underlying ADO.NET exception. /// /// the corresponding DataAccessException instance /// From 526ca13a7055807cd8586e330d6f08bd4985e98f Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:34:58 -0700 Subject: [PATCH 14/17] Fix occured typo in SessionFactoryUtils.cs Signed-off-by: SAY-5 --- .../Data/NHibernate/SessionFactoryUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/SessionFactoryUtils.cs b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/SessionFactoryUtils.cs index e56300c03..9cc9499ef 100644 --- a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/SessionFactoryUtils.cs +++ b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/SessionFactoryUtils.cs @@ -411,7 +411,7 @@ public static DataAccessException ConvertAdoAccessException(IAdoExceptionTransla /// handle AdoException specifically by using a AdoExceptionTranslator for the /// underlying ADO.NET exception. /// - /// The Hibernate exception that occured. + /// The Hibernate exception that occurred. /// DataAccessException instance public static DataAccessException ConvertHibernateAccessException(HibernateException ex) { From 83bf97d9f4cded908c4be407e1791e5598971b41 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:35:00 -0700 Subject: [PATCH 15/17] Fix occured typo in HibernateTransactionManager.cs Signed-off-by: SAY-5 --- .../Data/NHibernate/HibernateTransactionManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTransactionManager.cs b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTransactionManager.cs index 3ff67c055..1aa381b83 100644 --- a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTransactionManager.cs +++ b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/HibernateTransactionManager.cs @@ -658,7 +658,7 @@ protected virtual IDbTransaction GetIDbTransaction(ITransaction hibernateTx) /// Convert the given HibernateException to an appropriate exception from /// the Spring.Dao hierarchy. Can be overridden in subclasses. /// - /// The HibernateException that occured. + /// The HibernateException that occurred. /// The corresponding DataAccessException instance protected virtual DataAccessException ConvertHibernateAccessException(HibernateException ex) { @@ -678,7 +678,7 @@ protected virtual DataAccessException ConvertHibernateAccessException(HibernateE /// Convert the given ADOException to an appropriate exception from the /// the Spring.Dao hierarchy. Can be overridden in subclasses. /// - /// The ADOException that occured, wrapping the underlying + /// The ADOException that occurred, wrapping the underlying /// ADO.NET thrown exception. /// The translator to convert hibernate ADOExceptions. /// From 96e4020b899a94eadcbef7ef56513b9f7067b981 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:35:02 -0700 Subject: [PATCH 16/17] Fix occured typo in HibernateDaoSupport.cs Signed-off-by: SAY-5 --- .../Data/NHibernate/Generic/HibernateDaoSupport.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/Generic/HibernateDaoSupport.cs b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/Generic/HibernateDaoSupport.cs index bfd394fb7..efc7adc57 100644 --- a/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/Generic/HibernateDaoSupport.cs +++ b/src/Spring/Spring.Data.NHibernate5/Data/NHibernate/Generic/HibernateDaoSupport.cs @@ -179,7 +179,7 @@ protected ISession DoGetSession(bool allowCreate) /// org.springframework.dao hierarchy. Will automatically detect /// wrapped ADO.NET Exceptions and convert them accordingly. /// - /// HibernateException that occured. + /// HibernateException that occurred. /// /// The corresponding DataAccessException instance /// From 0ef03a4745e0c4b0a9c411f7a0ee4bad257a066d Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Thu, 16 Apr 2026 14:35:04 -0700 Subject: [PATCH 17/17] Fix occured typo in SaoFactoryObject.cs Signed-off-by: SAY-5 --- src/Spring/Spring.Services/Remoting/SaoFactoryObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Spring/Spring.Services/Remoting/SaoFactoryObject.cs b/src/Spring/Spring.Services/Remoting/SaoFactoryObject.cs index 69a5a4f3a..93d365df6 100644 --- a/src/Spring/Spring.Services/Remoting/SaoFactoryObject.cs +++ b/src/Spring/Spring.Services/Remoting/SaoFactoryObject.cs @@ -64,7 +64,7 @@ public SaoFactoryObject() /// /// Callback method called once all factory properties have been set. /// - /// if an error occured + /// if an error occurred public void AfterPropertiesSet() { if (ServiceUrl == null)