From f94990270f12a506f6048d4d5fa68872c2c9a32d Mon Sep 17 00:00:00 2001 From: Filip Hrisafov Date: Tue, 6 Dec 2016 22:37:30 +0100 Subject: [PATCH] fix a typo in the documentation --- .../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 28add4a88..81e01bb1f 100644 --- a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc +++ b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc @@ -507,7 +507,7 @@ MapStruct also supports mappings of `public` fields that have no getters/setters use the fields as read/write accessor if it cannot find suitable getter/setter methods for the property. A field is considered as a read accessor if it is `public` or `public final`. If a field is `static` it is not -considered as a read accessors. +considered as a read accessor. A field is considered as a write accessor only if it is `public`. If a field is `final` and/or `static` it is not considered as a write accessor.