From 608935399022011f3e5e588bce9491919ed64d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Pjengaard?= Date: Wed, 3 Aug 2022 13:42:26 +0200 Subject: [PATCH] fix: typo --- advanced/value-mappers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advanced/value-mappers.md b/advanced/value-mappers.md index 98e2801..b2a6da6 100644 --- a/advanced/value-mappers.md +++ b/advanced/value-mappers.md @@ -6,7 +6,7 @@ description: Configuring value mappers in Konstrukt, the back office UI builder A value mapper is a little Konstrukt helper class that sits between the editor UI and the database and lets you tweak the stored value of a field. By default Konstrukt will save a datatypes value is it would be stored in Umbraco. Value mappers let you change this. -When Konstrukt resolves a value mapper it will attempt to do so from the global DI container which means you can inject amy dependencies that you require for your mapper. If there is no such type defined in the DI container, Konstrukt will then fallback to maually instantiating a new instance of the value mapper. +When Konstrukt resolves a value mapper it will attempt to do so from the global DI container which means you can inject any dependencies that you require for your mapper. If there is no such type defined in the DI container, Konstrukt will then fallback to maually instantiating a new instance of the value mapper. ## Defining a value mapper @@ -59,4 +59,4 @@ Set the value mapper for the current field. ````csharp // Example fieldConfig.SetValueMapper(new MyValueMapper()); -```` \ No newline at end of file +````