@@ -63,7 +63,7 @@ public static partial class FrameworkElementExtensions
6363 /// </summary>
6464 /// <typeparam name="T">The type of elements to match.</typeparam>
6565 /// <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>
6767 /// <returns>The child that was found, or <see langword="null"/>.</returns>
6868 public static T ? FindChild < T > ( this FrameworkElement element , Func < T , bool > predicate )
6969 where T : notnull , FrameworkElement
@@ -80,7 +80,7 @@ public static partial class FrameworkElementExtensions
8080 /// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
8181 /// <param name="element">The root element.</param>
8282 /// <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>
8484 /// <returns>The child that was found, or <see langword="null"/>.</returns>
8585 public static T ? FindChild < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
8686 where T : notnull , FrameworkElement
@@ -96,7 +96,7 @@ public static partial class FrameworkElementExtensions
9696 /// <typeparam name="T">The type of elements to match.</typeparam>
9797 /// <typeparam name="TPredicate">The type of predicate in use.</typeparam>
9898 /// <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>
100100 /// <returns>The child that was found, or <see langword="null"/>.</returns>
101101 private static T ? FindChild < T , TPredicate > ( this FrameworkElement element , ref TPredicate predicate )
102102 where T : notnull , FrameworkElement
@@ -296,7 +296,7 @@ public static partial class FrameworkElementExtensions
296296 /// </summary>
297297 /// <typeparam name="T">The type of elements to match.</typeparam>
298298 /// <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>
300300 /// <returns>The child (or self) that was found, or <see langword="null"/>.</returns>
301301 public static T ? FindChildOrSelf < T > ( this FrameworkElement element , Func < T , bool > predicate )
302302 where T : notnull , FrameworkElement
@@ -316,7 +316,7 @@ public static partial class FrameworkElementExtensions
316316 /// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
317317 /// <param name="element">The root element.</param>
318318 /// <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>
320320 /// <returns>The child (or self) that was found, or <see langword="null"/>.</returns>
321321 public static T ? FindChildOrSelf < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
322322 where T : notnull , FrameworkElement
@@ -490,7 +490,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
490490 /// </summary>
491491 /// <typeparam name="T">The type of elements to match.</typeparam>
492492 /// <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>
494494 /// <returns>The parent that was found, or <see langword="null"/>.</returns>
495495 public static T ? FindParent < T > ( this FrameworkElement element , Func < T , bool > predicate )
496496 where T : notnull , FrameworkElement
@@ -507,7 +507,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
507507 /// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
508508 /// <param name="element">The starting element.</param>
509509 /// <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>
511511 /// <returns>The parent that was found, or <see langword="null"/>.</returns>
512512 public static T ? FindParent < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
513513 where T : notnull , FrameworkElement
@@ -523,7 +523,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
523523 /// <typeparam name="T">The type of elements to match.</typeparam>
524524 /// <typeparam name="TPredicate">The type of predicate in use.</typeparam>
525525 /// <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>
527527 /// <returns>The parent that was found, or <see langword="null"/>.</returns>
528528 private static T ? FindParent < T , TPredicate > ( this FrameworkElement element , ref TPredicate predicate )
529529 where T : notnull , FrameworkElement
@@ -600,7 +600,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
600600 /// </summary>
601601 /// <typeparam name="T">The type of elements to match.</typeparam>
602602 /// <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>
604604 /// <returns>The parent (or self) that was found, or <see langword="null"/>.</returns>
605605 public static T ? FindParentOrSelf < T > ( this FrameworkElement element , Func < T , bool > predicate )
606606 where T : notnull , FrameworkElement
@@ -620,7 +620,7 @@ public static IEnumerable<FrameworkElement> FindChildren(this FrameworkElement e
620620 /// <typeparam name="TState">The type of state to use when matching nodes.</typeparam>
621621 /// <param name="element">The starting element.</param>
622622 /// <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>
624624 /// <returns>The parent (or self) that was found, or <see langword="null"/>.</returns>
625625 public static T ? FindParentOrSelf < T , TState > ( this FrameworkElement element , TState state , Func < T , TState , bool > predicate )
626626 where T : notnull , FrameworkElement
0 commit comments