Skip to content
This repository was archived by the owner on Dec 7, 2018. It is now read-only.

Commit ee3fa61

Browse files
authored
Merge pull request #22 from RobWin/patch-1
Fixed typo in Spring Boot docs
2 parents ac70ba5 + 6469b16 commit ee3fa61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

part3/spring-boot-autoconfig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Example:
4141
@Qualifier("eventSerializer")
4242
@Bean
4343
public Serializer eventSerializer() {
44-
return new JacksonSerialzer();
44+
return new JacksonSerializer();
4545
}
4646
```
4747

@@ -57,7 +57,7 @@ public Serializer serializer() {
5757
@Qualifier("eventSerializer")
5858
@Bean
5959
public Serializer eventSerializer() {
60-
return new JacksonSerialzer();
60+
return new JacksonSerializer();
6161
}
6262
```
6363

0 commit comments

Comments
 (0)