From 2f075363b19fa915faa86a79b15038a8322c7c58 Mon Sep 17 00:00:00 2001 From: Mrxx99 <33566379+Mrxx99@users.noreply.github.com> Date: Sun, 4 Sep 2022 22:43:45 +0200 Subject: [PATCH] Fixing namespace sample The option 1 for valid XAML namespaces had an issue in the examples stating xmlns:... again inside the string. This fixes it --- guides/basics/introduction-to-xaml.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/basics/introduction-to-xaml.md b/guides/basics/introduction-to-xaml.md index 5a964e5..6d51252 100644 --- a/guides/basics/introduction-to-xaml.md +++ b/guides/basics/introduction-to-xaml.md @@ -45,8 +45,8 @@ xmlns:myAlias="MyNamespaceDefinition" **Option 1**: Using the `clr-namespace`-syntax: ```xml -xmlns:myAlias1="xmlns:my1="clr-namespace:My.NameSpace" -xmlns:myAlias2="xmlns:my1="clr-namespace:My.NameSpace.InOtherAssembly;assembly=TheOtherAssembly" +xmlns:myAlias1="clr-namespace:My.NameSpace" +xmlns:myAlias2="clr-namespace:My.NameSpace.InOtherAssembly;assembly=TheOtherAssembly" ``` {% hint style="info" %} `My.NameSpace` is the namespace in `C#` you want to use {% endhint %}