From 5a0a88c039dedaea184d85207facc710971396b2 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Wed, 6 Apr 2016 13:56:57 +0200 Subject: [PATCH] Fix typo in reference manual regarding JSR 330 --- src/asciidoc/testing.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asciidoc/testing.adoc b/src/asciidoc/testing.adoc index f7cd55a7e5b..3c531a2ce73 100644 --- a/src/asciidoc/testing.adoc +++ b/src/asciidoc/testing.adoc @@ -2769,7 +2769,7 @@ application context that you configured with `@ContextConfiguration`. You may us injection, field injection, or both, depending on which annotations you choose and whether you place them on setter methods or fields. For consistency with the annotation support introduced in Spring 2.5 and 3.0, you can use Spring's `@Autowired` annotation -or the `@Inject` annotation from JSR 300. +or the `@Inject` annotation from JSR 330. [TIP] ====