Skip to content

Commit 4da9ed2

Browse files
committed
fix wrong angel bracket when parsing Vector3
1 parent a2ed6aa commit 4da9ed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.UI/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public static Vector3 ToVector3(this string text)
7979
if (text.Length > 0)
8080
{
8181
if (text.Length >= 2 &&
82-
text[0] == '>' &&
82+
text[0] == '<' &&
8383
text[text.Length - 1] == '>')
8484
{
8585
text = text.Substring(1, text.Length - 2);

0 commit comments

Comments
 (0)