Skip to content

Commit 799736c

Browse files
committed
Fix typos in Javadoc for AutowireCapableBeanFactory
1 parent f1378aa commit 799736c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/config/AutowireCapableBeanFactory.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -114,9 +114,9 @@ public interface AutowireCapableBeanFactory extends BeanFactory {
114114
* <p>Performs full initialization of the bean, including all applicable
115115
* {@link BeanPostProcessor BeanPostProcessors}.
116116
* <p>Note: This is intended for creating a fresh instance, populating annotated
117-
* fields and methods as well as applying all standard bean initialiation callbacks.
117+
* fields and methods as well as applying all standard bean initialization callbacks.
118118
* It does <i>not</> imply traditional by-name or by-type autowiring of properties;
119-
* use {@link #createBean(Class, int, boolean)} for that purposes.
119+
* use {@link #createBean(Class, int, boolean)} for those purposes.
120120
* @param beanClass the class of the bean to create
121121
* @return the new bean instance
122122
* @throws BeansException if instantiation or wiring failed
@@ -129,7 +129,7 @@ public interface AutowireCapableBeanFactory extends BeanFactory {
129129
* <p>Note: This is essentially intended for (re-)populating annotated fields and
130130
* methods, either for new instances or for deserialized instances. It does
131131
* <i>not</i> imply traditional by-name or by-type autowiring of properties;
132-
* use {@link #autowireBeanProperties} for that purposes.
132+
* use {@link #autowireBeanProperties} for those purposes.
133133
* @param existingBean the existing bean instance
134134
* @throws BeansException if wiring failed
135135
*/
@@ -159,7 +159,7 @@ public interface AutowireCapableBeanFactory extends BeanFactory {
159159
* @param descriptor the descriptor for the dependency
160160
* @param beanName the name of the bean which declares the present dependency
161161
* @return the resolved object, or {@code null} if none found
162-
* @throws BeansException in dependency resolution failed
162+
* @throws BeansException if dependency resolution failed
163163
*/
164164
Object resolveDependency(DependencyDescriptor descriptor, String beanName) throws BeansException;
165165

@@ -321,7 +321,7 @@ Object applyBeanPostProcessorsAfterInitialization(Object existingBean, String be
321321
* @param typeConverter the TypeConverter to use for populating arrays and
322322
* collections
323323
* @return the resolved object, or {@code null} if none found
324-
* @throws BeansException in dependency resolution failed
324+
* @throws BeansException if dependency resolution failed
325325
*/
326326
Object resolveDependency(DependencyDescriptor descriptor, String beanName,
327327
Set<String> autowiredBeanNames, TypeConverter typeConverter) throws BeansException;

0 commit comments

Comments
 (0)