Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit da2307f

Browse files
committed
Fix typo 🚀
1 parent 78d23b8 commit da2307f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/posts/2022-03-02-custom-jackson-module-deserlializer-serializer-object-mapper-java-spi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ If you look closely to our `ObjectMapper` definition you can see something inter
268268
instance creation there is a call to the `findAndRegisterModules`. What does this method do? It contains
269269
the core feature of Jackson `Module`s load :heart_eyes:. This method is in charge of loading external third party
270270
modules using the [Java Service Provider interfaces](https://www.baeldung.com/java-spi).
271-
This a feature of Java 6 that let (library) developer write code to load and discovery third party plugins for their
271+
This is a feature of Java 6 that let (library) developer write code to load and discovery third party plugins for their
272272
library implementations that matches a specific interface. In our case Jackson uses it to load every third party
273273
implementation that matches the `Module` interface. How does it work? The `ServiceProvider` will scan the classpath
274274
searching for service definition adhering to the base interface defined for the external/third party implementation.

0 commit comments

Comments
 (0)