Skip to content

Commit 29fb3f2

Browse files
authored
Fix typo in @configurable example in reference manual
Closes gh-26551
1 parent 63db250 commit 29fb3f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docs/asciidoc/core/core-aop.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3394,7 +3394,7 @@ definition to configure new `Account` instances.
33943394
You can also use autowiring to avoid having to specify a dedicated bean definition at
33953395
all. To have Spring apply autowiring, use the `autowire` property of the `@Configurable`
33963396
annotation. You can specify either `@Configurable(autowire=Autowire.BY_TYPE)` or
3397-
`@Configurable(autowire=Autowire.BY_NAME` for autowiring by type or by name,
3397+
`@Configurable(autowire=Autowire.BY_NAME)` for autowiring by type or by name,
33983398
respectively. As an alternative, it is preferable to specify explicit, annotation-driven
33993399
dependency injection for your `@Configurable` beans through `@Autowired` or `@Inject`
34003400
at the field or method level (see <<beans-annotation-config>> for further details).

0 commit comments

Comments
 (0)