Skip to content

Commit 6dc9a74

Browse files
authored
Fix Typo (#77104)
1 parent 960e4d7 commit 6dc9a74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/libraries/System.Linq.Expressions/src/System/Linq/Expressions/ExpressionVisitor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static ReadOnlyCollection<T> Visit<T>(ReadOnlyCollection<T> nodes, Func<T
122122
/// </summary>
123123
/// <typeparam name="T">The type of the expression.</typeparam>
124124
/// <param name="node">The expression to visit.</param>
125-
/// <param name="callerName">The name of the calling method; used to report to report a better error message.</param>
125+
/// <param name="callerName">The name of the calling method; used to report a better error message.</param>
126126
/// <returns>The modified expression, if it or any subexpression was modified;
127127
/// otherwise, returns the original expression.</returns>
128128
/// <exception cref="InvalidOperationException">The visit method for this node returned a different type.</exception>
@@ -146,7 +146,7 @@ public static ReadOnlyCollection<T> Visit<T>(ReadOnlyCollection<T> nodes, Func<T
146146
/// </summary>
147147
/// <typeparam name="T">The type of the expression.</typeparam>
148148
/// <param name="nodes">The expression to visit.</param>
149-
/// <param name="callerName">The name of the calling method; used to report to report a better error message.</param>
149+
/// <param name="callerName">The name of the calling method; used to report a better error message.</param>
150150
/// <returns>The modified expression, if it or any subexpression was modified;
151151
/// otherwise, returns the original expression.</returns>
152152
/// <exception cref="InvalidOperationException">The visit method for this node returned a different type.</exception>

0 commit comments

Comments
 (0)