From d036a37d02857bc7c18feaf153220bb880464d4a Mon Sep 17 00:00:00 2001 From: stefankoppier Date: Fri, 1 Nov 2024 08:16:35 +0100 Subject: [PATCH] Fixed broken link in website --- website/src/posts/object-mapping/posts/implicit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/posts/object-mapping/posts/implicit.md b/website/src/posts/object-mapping/posts/implicit.md index 9176ca51..279def38 100644 --- a/website/src/posts/object-mapping/posts/implicit.md +++ b/website/src/posts/object-mapping/posts/implicit.md @@ -11,7 +11,7 @@ Mappie infers implicit mappings by name, type, default arguments, getter- and se are defined. An implicit mapping for a target property is inferred automatically if it has the same name as a source property, and it is assignable from that source property. If it is not assignable, Mappie will check if there is a single mapper defined that can map the source type to the target type, and will automatically apply it. Mappie comes -with several mappers out of the box. See [Built-in Mappers](/object-mapping/built-in/). +with several mappers out of the box. See [Built-in Mappers](/object-mapping/built-in-mappers/). For example, suppose we have a data class `Person` and a data class `PersonDto` ```kotlin