File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,14 @@ public static class CombinatorSymbols
6060 /// <summary>
6161 /// The " " combinator.
6262 /// </summary>
63+ [ Obsolete ( "Use CombinatorSymbols.Descendant" ) ]
6364 public static readonly String Descendent = " " ;
6465
66+ /// <summary>
67+ /// The " " combinator.
68+ /// </summary>
69+ public static readonly String Descendant = " " ;
70+
6571 /// <summary>
6672 /// The ">>>" combinator.
6773 /// </summary>
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ private sealed class DescendantCombinator : CssCombinator
119119 {
120120 public DescendantCombinator ( )
121121 {
122- Delimiter = CombinatorSymbols . Descendent ;
122+ Delimiter = CombinatorSymbols . Descendant ;
123123 Transform = el =>
124124 {
125125 var parents = new List < IElement > ( ) ;
You can’t perform that action at this time.
0 commit comments