@@ -63,7 +63,7 @@ public static partial class FrameworkElementExtensions
63
63
/// </summary>
64
64
/// <typeparam name="T">The type of elements to match.</typeparam>
65
65
/// <param name="element">The root element.</param>
66
- /// <param name="predicate">The predicatee to use to match the child nodes.</param>
66
+ /// <param name="predicate">The predicate to use to match the child nodes.</param>
67
67
/// <returns>The child that was found, or <see langword="null"/>.</returns>
68
68
public static T ? FindChild < T > ( this FrameworkElement element , Func < T , bool > predicate )
69
69
where T : notnull , FrameworkElement
@@ -80,7 +80,7 @@ public static partial class FrameworkElementExtensions
80
80
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
81
81
/// <param name="element">The root element.</param>
82
82
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
83
- /// <param name="predicate">The predicatee to use to match the child nodes.</param>
83
+ /// <param name="predicate">The predicate to use to match the child nodes.</param>
84
84
/// <returns>The child that was found, or <see langword="null"/>.</returns>
85
85
public static T ? FindChild < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
86
86
where T : notnull , FrameworkElement
@@ -96,7 +96,7 @@ public static partial class FrameworkElementExtensions
96
96
/// <typeparam name="T">The type of elements to match.</typeparam>
97
97
/// <typeparam name="TPredicate">The type of predicate in use.</typeparam>
98
98
/// <param name="element">The root element.</param>
99
- /// <param name="predicate">The predicatee to use to match the child nodes.</param>
99
+ /// <param name="predicate">The predicate to use to match the child nodes.</param>
100
100
/// <returns>The child that was found, or <see langword="null"/>.</returns>
101
101
private static T ? FindChild < T , TPredicate > ( this FrameworkElement element , ref TPredicate predicate )
102
102
where T : notnull , FrameworkElement
@@ -296,7 +296,7 @@ public static partial class FrameworkElementExtensions
296
296
/// </summary>
297
297
/// <typeparam name="T">The type of elements to match.</typeparam>
298
298
/// <param name="element">The root element.</param>
299
- /// <param name="predicate">The predicatee to use to match the child nodes.</param>
299
+ /// <param name="predicate">The predicate to use to match the child nodes.</param>
300
300
/// <returns>The child (or self) that was found, or <see langword="null"/>.</returns>
301
301
public static T ? FindChildOrSelf < T > ( this FrameworkElement element , Func < T , bool > predicate )
302
302
where T : notnull , FrameworkElement
@@ -316,7 +316,7 @@ public static partial class FrameworkElementExtensions
316
316
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
317
317
/// <param name="element">The root element.</param>
318
318
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
319
- /// <param name="predicate">The predicatee to use to match the child nodes.</param>
319
+ /// <param name="predicate">The predicate to use to match the child nodes.</param>
320
320
/// <returns>The child (or self) that was found, or <see langword="null"/>.</returns>
321
321
public static T ? FindChildOrSelf < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
322
322
where T : notnull , FrameworkElement
@@ -490,7 +490,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
490
490
/// </summary>
491
491
/// <typeparam name="T">The type of elements to match.</typeparam>
492
492
/// <param name="element">The starting element.</param>
493
- /// <param name="predicate">The predicatee to use to match the parent nodes.</param>
493
+ /// <param name="predicate">The predicate to use to match the parent nodes.</param>
494
494
/// <returns>The parent that was found, or <see langword="null"/>.</returns>
495
495
public static T ? FindParent < T > ( this FrameworkElement element , Func < T , bool > predicate )
496
496
where T : notnull , FrameworkElement
@@ -507,7 +507,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
507
507
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
508
508
/// <param name="element">The starting element.</param>
509
509
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
510
- /// <param name="predicate">The predicatee to use to match the parent nodes.</param>
510
+ /// <param name="predicate">The predicate to use to match the parent nodes.</param>
511
511
/// <returns>The parent that was found, or <see langword="null"/>.</returns>
512
512
public static T ? FindParent < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
513
513
where T : notnull , FrameworkElement
@@ -523,7 +523,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
523
523
/// <typeparam name="T">The type of elements to match.</typeparam>
524
524
/// <typeparam name="TPredicate">The type of predicate in use.</typeparam>
525
525
/// <param name="element">The starting element.</param>
526
- /// <param name="predicate">The predicatee to use to match the parent nodes.</param>
526
+ /// <param name="predicate">The predicate to use to match the parent nodes.</param>
527
527
/// <returns>The parent that was found, or <see langword="null"/>.</returns>
528
528
private static T ? FindParent < T , TPredicate > ( this FrameworkElement element , ref TPredicate predicate )
529
529
where T : notnull , FrameworkElement
@@ -600,7 +600,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
600
600
/// </summary>
601
601
/// <typeparam name="T">The type of elements to match.</typeparam>
602
602
/// <param name="element">The starting element.</param>
603
- /// <param name="predicate">The predicatee to use to match the parent nodes.</param>
603
+ /// <param name="predicate">The predicate to use to match the parent nodes.</param>
604
604
/// <returns>The parent (or self) that was found, or <see langword="null"/>.</returns>
605
605
public static T ? FindParentOrSelf < T > ( this FrameworkElement element , Func < T , bool > predicate )
606
606
where T : notnull , FrameworkElement
@@ -620,7 +620,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
620
620
/// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
621
621
/// <param name="element">The starting element.</param>
622
622
/// <param name="state">The state to give as input to <paramref name="predicate"/>.</param>
623
- /// <param name="predicate">The predicatee to use to match the parent nodes.</param>
623
+ /// <param name="predicate">The predicate to use to match the parent nodes.</param>
624
624
/// <returns>The parent (or self) that was found, or <see langword="null"/>.</returns>
625
625
public static T ? FindParentOrSelf < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
626
626
where T : notnull , FrameworkElement
0 commit comments