From 81b4535aad4b6a5a4fb4c8a1632c16d4f81f997b Mon Sep 17 00:00:00 2001 From: Dominik Gruntz Date: Tue, 1 Nov 2016 17:19:47 +0100 Subject: [PATCH] #945 fixes typo --- .../src/main/asciidoc/mapstruct-reference-guide.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc index 858a06997..598619247 100644 --- a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc +++ b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc @@ -1383,7 +1383,7 @@ By default, the generated code for mapping one bean type into another will call Alternatively you can plug in custom object factories which will be invoked to obtain instances of the target type. One use case for this is JAXB which creates `ObjectFactory` classes for obtaining new instances of schema types. -To do make use of custom factories register them via `@Mapper#uses()` as described in <>. When creating the target object of a bean mapping, MapStruct will look for a parameterless method, or a method with only one `@TargetType` parameter that returns the required target type and invoke this method instead of calling the default constructor: +To make use of custom factories register them via `@Mapper#uses()` as described in <>. When creating the target object of a bean mapping, MapStruct will look for a parameterless method, or a method with only one `@TargetType` parameter that returns the required target type and invoke this method instead of calling the default constructor: .Custom object factories ====