From 4a84014263fabc1a017e27e825ca9a01aa477552 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Wed, 9 Jan 2019 15:58:29 +0100 Subject: [PATCH] Fix typos. --- src/Avalonia.Styling/Styling/SelectorMatch.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Avalonia.Styling/Styling/SelectorMatch.cs b/src/Avalonia.Styling/Styling/SelectorMatch.cs index ca73c1f727..63b89e9e97 100644 --- a/src/Avalonia.Styling/Styling/SelectorMatch.cs +++ b/src/Avalonia.Styling/Styling/SelectorMatch.cs @@ -46,22 +46,22 @@ namespace Avalonia.Styling public class SelectorMatch { /// - /// A selector match with the result of / + /// A selector match with the result of . /// public static readonly SelectorMatch NeverThisType = new SelectorMatch(SelectorMatchResult.NeverThisType); /// - /// A selector match with the result of / + /// A selector match with the result of . /// public static readonly SelectorMatch NeverThisInstance = new SelectorMatch(SelectorMatchResult.NeverThisInstance); /// - /// A selector match with the result of / + /// A selector match with the result of . /// public static readonly SelectorMatch AlwaysThisType = new SelectorMatch(SelectorMatchResult.AlwaysThisType); /// - /// Gets a selector match with the result of / + /// Gets a selector match with the result of . /// public static readonly SelectorMatch AlwaysThisInstance = new SelectorMatch(SelectorMatchResult.AlwaysThisInstance);