From 31be9e243fe2e198b5f7630988e028f124f66b47 Mon Sep 17 00:00:00 2001 From: latonz Date: Wed, 20 Mar 2024 14:46:39 -0600 Subject: [PATCH] docs: fix existing target merge object sample --- docs/docs/configuration/existing-target.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/existing-target.md b/docs/docs/configuration/existing-target.md index cd472ad3b0..2232c43e1b 100644 --- a/docs/docs/configuration/existing-target.md +++ b/docs/docs/configuration/existing-target.md @@ -43,7 +43,7 @@ This ignores all properties on the source with a `null` value. // highlight-end static partial class FruitMapper { - public static partial void ApplyUpdate(this Fruit fruit, FruitUpdate update); + public static partial void ApplyUpdate(FruitUpdate update, Fruit fruit); } class Fruit { public required string Name { get; set; } public required string Color { get; set; } }