Skip to content

Commit 3ccf653

Browse files
fisachesnicoll
authored andcommitted
Polish Javadoc
See gh-1112
1 parent dd65f7a commit 3ccf653

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/BeanClassLoaderAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Callback that allows a bean to be aware of the bean
21-
* {@link ClassLoader class loader}; that is, the class loader used by the
21+
* {@link ClassLoader class loader}; that is, the class loader is used by the
2222
* present bean factory to load bean classes.
2323
*
2424
* <p>This is mainly intended to be implemented by framework classes which

spring-beans/src/main/java/org/springframework/beans/factory/BeanNameAware.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Interface to be implemented by beans that want to be aware of their
2121
* bean name in a bean factory. Note that it is not usually recommended
22-
* that an object depend on its bean name, as this represents a potentially
22+
* that an object depends on its bean name, as this represents a potentially
2323
* brittle dependence on external configuration, as well as a possibly
2424
* unnecessary dependence on a Spring API.
2525
*

spring-beans/src/main/java/org/springframework/beans/factory/DisposableBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* <p>An alternative to implementing DisposableBean is specifying a custom
2626
* destroy-method, for example in an XML bean definition.
27-
* For a list of all bean lifecycle methods, see the BeanFactory javadocs.
27+
* For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs}.
2828
*
2929
* @author Juergen Hoeller
3030
* @since 12.08.2003

spring-beans/src/main/java/org/springframework/beans/factory/FactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* <p><b>NB: A bean that implements this interface cannot be used as a
2626
* normal bean.</b> A FactoryBean is defined in a bean style, but the
27-
* object exposed for bean references ({@link #getObject()} is always
27+
* object exposed for bean references ({@link #getObject()}) is always
2828
* the object that it creates.
2929
*
3030
* <p>FactoryBeans can support singletons and prototypes, and can

spring-beans/src/main/java/org/springframework/beans/factory/InitializingBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* <p>An alternative to implementing InitializingBean is specifying a custom
2525
* init-method, for example in an XML bean definition.
26-
* For a list of all bean lifecycle methods, see the BeanFactory javadocs.
26+
* For a list of all bean lifecycle methods, see the {@link BeanFactory BeanFactory javadocs}.
2727
*
2828
* @author Rod Johnson
2929
* @see BeanNameAware

0 commit comments

Comments
 (0)