From c9ef6b8372a461bece8bf12b4482d1b7c8588a8a Mon Sep 17 00:00:00 2001 From: markpollack Date: Thu, 22 Jul 2010 15:54:37 +0000 Subject: [PATCH] misc documentation fixes... --- src/Spring/Spring.Core/Objects/Factory/Config/ObjectRole.cs | 2 +- .../Objects/Factory/Support/DefaultListableObjectFactory.cs | 2 +- .../Data/NHibernate/Support/OpenSessionInViewModule.cs | 2 +- .../Messaging/Listener/AbstractMessageListenerContainer.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Spring/Spring.Core/Objects/Factory/Config/ObjectRole.cs b/src/Spring/Spring.Core/Objects/Factory/Config/ObjectRole.cs index 80066877..7b30d60e 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Config/ObjectRole.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Config/ObjectRole.cs @@ -30,7 +30,7 @@ namespace Spring.Objects.Factory.Config // TODO (EE): ComponentDefinitions are part of Spring/J 2.5 /// - /// Role hint indicating that a is a major part of the application. Typically corresponds to a user-defined bean. + /// Role hint indicating that a is a major part of the application. Typically corresponds to a user-defined object. /// ROLE_APPLICATION = 0, diff --git a/src/Spring/Spring.Core/Objects/Factory/Support/DefaultListableObjectFactory.cs b/src/Spring/Spring.Core/Objects/Factory/Support/DefaultListableObjectFactory.cs index 167c0feb..7d6f6956 100644 --- a/src/Spring/Spring.Core/Objects/Factory/Support/DefaultListableObjectFactory.cs +++ b/src/Spring/Spring.Core/Objects/Factory/Support/DefaultListableObjectFactory.cs @@ -523,7 +523,7 @@ namespace Spring.Objects.Factory.Support /// ApplicationContext instance that the object is living in. /// /// Note there are no such default types registered in a plain IObjectFactory, - /// not even for the BeanFactory interface itself. + /// not even for the IObjectFactory interface itself. /// /// public void RegisterResolvableDependency(Type dependencyType, object autowiredValue) diff --git a/src/Spring/Spring.Data.NHibernate/Data/NHibernate/Support/OpenSessionInViewModule.cs b/src/Spring/Spring.Data.NHibernate/Data/NHibernate/Support/OpenSessionInViewModule.cs index 4fc7731b..cca4d990 100644 --- a/src/Spring/Spring.Data.NHibernate/Data/NHibernate/Support/OpenSessionInViewModule.cs +++ b/src/Spring/Spring.Data.NHibernate/Data/NHibernate/Support/OpenSessionInViewModule.cs @@ -39,7 +39,7 @@ namespace Spring.Data.NHibernate.Support { /// /// Initializes a new instance of the class. Creates a SessionScope, - /// but does not yet associate a session with a thread, that is lef to the lifecycle of the request. + /// but does not yet associate a session with a thread, that is left to the lifecycle of the request. /// public OpenSessionInViewModule() : base("appSettings", typeof(OpenSessionInViewModule), false) { diff --git a/src/Spring/Spring.Messaging/Messaging/Listener/AbstractMessageListenerContainer.cs b/src/Spring/Spring.Messaging/Messaging/Listener/AbstractMessageListenerContainer.cs index 2e4127ab..7f4ea260 100644 --- a/src/Spring/Spring.Messaging/Messaging/Listener/AbstractMessageListenerContainer.cs +++ b/src/Spring/Spring.Messaging/Messaging/Listener/AbstractMessageListenerContainer.cs @@ -166,7 +166,7 @@ namespace Spring.Messaging.Listener { if (MessageQueueObjectName == null) { - throw new ArgumentException("Property 'DefaultMessageQueueObjectName' is required"); + throw new ArgumentException("Property 'MessageQueueObjectName' is required"); } if (MessageQueueFactory == null) {