From cfe0f6250c5e6ab3095df943e324911cf25bd581 Mon Sep 17 00:00:00 2001 From: dgruntz Date: Thu, 25 Oct 2018 19:26:39 +0200 Subject: [PATCH] Renames MAPPER field to INSTANCE (#1632) --- .../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 56f629175..50804de70 100644 --- a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc +++ b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc @@ -583,7 +583,7 @@ public class CustomerDto { @Mapper public interface CustomerMapper { - CustomerMapper MAPPER = Mappers.getMapper( CustomerMapper.class ); + CustomerMapper INSTANCE = Mappers.getMapper( CustomerMapper.class ); @Mapping(source = "customerName", target = "name") Customer toCustomer(CustomerDto customerDto);