Fix typo in docs (#2982)

This commit is contained in:
Taihao Zhang 2022-08-24 19:40:08 +02:00 committed by GitHub
parent 853e7b27df
commit 3f798744ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -304,7 +304,7 @@ The difference is that it allows users to write custom condition methods that wi
A custom condition method is a method that is annotated with `org.mapstruct.Condition` and returns `boolean`.
e.g. if you only want to map a String property when it is not `null, and it is not empty then you can do something like:
e.g. if you only want to map a String property when it is not `null`, and it is not empty then you can do something like:
.Mapper using custom condition check method
====