From fff74572861c49cc74686eed96bd81281abddceb Mon Sep 17 00:00:00 2001 From: Dominik Gruntz Date: Tue, 1 Nov 2016 16:05:40 +0100 Subject: [PATCH] #945 Updates mapstruct-reference-guide: Revives caption Caption to example 17 got lost (due to a missing line). Adds the missing line in front of .Conversion from BigDecimal to String so that this caption is printed as caption again. --- .../src/main/asciidoc/mapstruct-reference-guide.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc index 8ef7ef7db..fec45cf6d 100644 --- a/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc +++ b/documentation/src/main/asciidoc/mapstruct-reference-guide.asciidoc @@ -604,6 +604,7 @@ public interface CarMapper { * Between `enum` types and `String`. * Between big number types (`java.math.BigInteger`, `java.math.BigDecimal`) and Java primitive types (including their wrappers) as well as String. A format string as understood by `java.text.DecimalFormat` can be specified. + .Conversion from BigDecimal to String ==== [source, java, linenums]