diff --git a/spring-framework-reference/src/metadata.xml b/spring-framework-reference/src/metadata.xml
index cc65d48b043..a9bcd5622ad 100644
--- a/spring-framework-reference/src/metadata.xml
+++ b/spring-framework-reference/src/metadata.xml
@@ -10,7 +10,7 @@
Java 5 introduced source-level metadata called annotations to
program elements, usually, classes and/or methods
- For example we might add metadata at the class level using the
+ For example we might add metadata at the class level using
Spring's @Transactional annotation that is used to support Spring's
declarative transaction management features.
@@ -32,18 +32,18 @@ public class PetStoreImpl implements PetStoreFacade, OrderService {
- The value of using annoations has been broadly embrassed by the JEE
- community. For example, it's much less verbose than the traditional XML
+ The value of using annoations has been broadly embraced by the Java
+ community. For example, it's much less verbose than traditional XML
deployment descriptors. While it is desirable to externalize some things
from program source code, some important enterprise settings - notably
- transaction characteristics - arguably belong in program source.
+ transaction characteristics - arguably belong in program source.
- Spring uses Java 5 annotations thoughout the framework across a wide
- range of features such as DI, MVC, and AOP and supports JEE standard
- annotations such as @PreDestroy and @PostConstruct defined by JSR-250.
- This chapter describes the @Required attribute and provides links to other
- parts the documentation where the various attributes are described in more
- detail.
+ Spring uses Java 5 annotations thoughout the framework and across a
+ wide range of features such as DI, MVC, and AOP and supports standardized
+ annotations such as @PreDestroy and @PostConstruct specified by JSR-250, and
+ @Inject specified by JSR-330. This chapter describes the @Required annotation
+ and provides links to other parts of the documentation where the various
+ annotations are described in more detail.