From e6279d10c78795231cd6fb790760e53147d5459a Mon Sep 17 00:00:00 2001 From: Makoto Oda Date: Wed, 26 Aug 2020 03:34:02 +0900 Subject: [PATCH] Is 'r' missing? (#2188) --- .../src/main/asciidoc/chapter-13-using-mapstruct-spi.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/chapter-13-using-mapstruct-spi.asciidoc b/documentation/src/main/asciidoc/chapter-13-using-mapstruct-spi.asciidoc index bc9cf7646..54c33ed93 100644 --- a/documentation/src/main/asciidoc/chapter-13-using-mapstruct-spi.asciidoc +++ b/documentation/src/main/asciidoc/chapter-13-using-mapstruct-spi.asciidoc @@ -2,7 +2,7 @@ == Using the MapStruct SPI === Custom Accessor Naming Strategy -MapStruct offers the possibility to override the `AccessorNamingStrategy` via the Service Provide Interface (SPI). A nice example is the use of the fluent API on the source object `GolfPlayer` and `GolfPlayerDto` below. +MapStruct offers the possibility to override the `AccessorNamingStrategy` via the Service Provider Interface (SPI). A nice example is the use of the fluent API on the source object `GolfPlayer` and `GolfPlayerDto` below. .Source object GolfPlayer with fluent API. ====