Browse Source

Fix typos.

pull/2088/head
Steven Kirk 7 years ago
parent
commit
4a84014263
  1. 8
      src/Avalonia.Styling/Styling/SelectorMatch.cs

8
src/Avalonia.Styling/Styling/SelectorMatch.cs

@ -46,22 +46,22 @@ namespace Avalonia.Styling
public class SelectorMatch
{
/// <summary>
/// A selector match with the result of <see cref="SelectorMatchResult.NeverThisType"/>/
/// A selector match with the result of <see cref="SelectorMatchResult.NeverThisType"/>.
/// </summary>
public static readonly SelectorMatch NeverThisType = new SelectorMatch(SelectorMatchResult.NeverThisType);
/// <summary>
/// A selector match with the result of <see cref="SelectorMatchResult.NeverThisInstance"/>/
/// A selector match with the result of <see cref="SelectorMatchResult.NeverThisInstance"/>.
/// </summary>
public static readonly SelectorMatch NeverThisInstance = new SelectorMatch(SelectorMatchResult.NeverThisInstance);
/// <summary>
/// A selector match with the result of <see cref="SelectorMatchResult.AlwaysThisType"/>/
/// A selector match with the result of <see cref="SelectorMatchResult.AlwaysThisType"/>.
/// </summary>
public static readonly SelectorMatch AlwaysThisType = new SelectorMatch(SelectorMatchResult.AlwaysThisType);
/// <summary>
/// Gets a selector match with the result of <see cref="SelectorMatchResult.AlwaysThisInstance"/>/
/// Gets a selector match with the result of <see cref="SelectorMatchResult.AlwaysThisInstance"/>.
/// </summary>
public static readonly SelectorMatch AlwaysThisInstance = new SelectorMatch(SelectorMatchResult.AlwaysThisInstance);

Loading…
Cancel
Save