We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac429a4 commit 84c7f07Copy full SHA for 84c7f07
framework-docs/src/docs/asciidoc/core/core-beans.adoc
@@ -7557,7 +7557,7 @@ The simplest possible `@Configuration` class reads as follows:
7557
public class AppConfig {
7558
7559
@Bean
7560
- public MyService myService() {
+ public MyServiceImpl myService() {
7561
return new MyServiceImpl();
7562
}
7563
@@ -7569,7 +7569,7 @@ The simplest possible `@Configuration` class reads as follows:
7569
class AppConfig {
7570
7571
7572
- fun myService(): MyService {
+ fun myService(): MyServiceImpl {
7573
return MyServiceImpl()
7574
7575
0 commit comments