Fix typos detected by github.com/client9/misspell
This commit is contained in:
committed by
Juergen Hoeller
parent
896eb5687a
commit
be211ceead
@@ -197,7 +197,7 @@ public interface ConfigurableApplicationContext extends ApplicationContext, Life
|
||||
* will already have been instantiated before. Use a BeanFactoryPostProcessor
|
||||
* to intercept the BeanFactory setup process before beans get touched.
|
||||
* <p>Generally, this internal factory will only be accessible while the context
|
||||
* is active, that is, inbetween {@link #refresh()} and {@link #close()}.
|
||||
* is active, that is, in-between {@link #refresh()} and {@link #close()}.
|
||||
* The {@link #isActive()} flag can be used to check whether the context
|
||||
* is in an appropriate state.
|
||||
* @return the underlying bean factory
|
||||
|
||||
@@ -339,7 +339,7 @@ public abstract class AbstractReflectiveMBeanInfoAssembler extends AbstractMBean
|
||||
/**
|
||||
* Iterate through all methods on the MBean class and gives subclasses the chance
|
||||
* to vote on their inclusion. If a particular method corresponds to the accessor
|
||||
* or mutator of an attribute that is inclued in the managment interface, then
|
||||
* or mutator of an attribute that is inclued in the management interface, then
|
||||
* the corresponding operation is exposed with the "role" descriptor
|
||||
* field set to the appropriate value.
|
||||
* @param managedBean the bean instance (might be an AOP proxy)
|
||||
|
||||
@@ -132,7 +132,7 @@ public class ScheduledExecutorTask {
|
||||
/**
|
||||
* Set the period between repeated task executions, in milliseconds.
|
||||
* <p>Default is -1, leading to one-time execution. In case of a positive value,
|
||||
* the task will be executed repeatedly, with the given interval inbetween executions.
|
||||
* the task will be executed repeatedly, with the given interval in-between executions.
|
||||
* <p>Note that the semantics of the period value vary between fixed-rate and
|
||||
* fixed-delay execution.
|
||||
* <p><b>Note:</b> A period of 0 (for example as fixed delay) is <i>not</i> supported,
|
||||
|
||||
@@ -398,7 +398,7 @@ public class ProxyFactoryBeanTests {
|
||||
config.removeAdvice(debugInterceptor);
|
||||
it.getSpouse();
|
||||
|
||||
// Still invoked wiht old reference
|
||||
// Still invoked with old reference
|
||||
assertEquals(2, debugInterceptor.getCount());
|
||||
|
||||
// not invoked with new object
|
||||
|
||||
@@ -48,7 +48,7 @@ public class CandidateComponentsTestClassLoader extends ClassLoader {
|
||||
|
||||
/**
|
||||
* Create a test {@link ClassLoader} that creates an index with the
|
||||
* specifed {@link Resource} instances
|
||||
* specified {@link Resource} instances
|
||||
* @param classLoader the classloader to use for all other operations
|
||||
* @return a test {@link ClassLoader} with an index built based on the
|
||||
* specified resources.
|
||||
|
||||
@@ -185,7 +185,7 @@ public class SpringValidatorAdapterTests {
|
||||
@Test // SPR-16177
|
||||
public void testWithSet() {
|
||||
Parent parent = new Parent();
|
||||
parent.setName("Parent whith set");
|
||||
parent.setName("Parent with set");
|
||||
parent.getChildSet().addAll(createChildren(parent));
|
||||
|
||||
BeanPropertyBindingResult errors = new BeanPropertyBindingResult(parent, "parent");
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
<!-- We are only using one definition file for the purposes of this test, since we do not have multiple
|
||||
classloaders available in the environment to allow combining multiple files of the same name, but
|
||||
of course the contents within could be spread out across multiple files of the same name withing
|
||||
of course the contents within could be spread out across multiple files of the same name within
|
||||
different jars -->
|
||||
|
||||
<beans>
|
||||
|
||||
Reference in New Issue
Block a user