Fix Typo (#77104)
authorRobin Sue <robinsue@live.de>
Mon, 17 Oct 2022 03:02:22 +0000 (05:02 +0200)
committerGitHub <noreply@github.com>
Mon, 17 Oct 2022 03:02:22 +0000 (21:02 -0600)
src/libraries/System.Linq.Expressions/src/System/Linq/Expressions/ExpressionVisitor.cs

index 4b558ea..c0f9ef9 100644 (file)
@@ -122,7 +122,7 @@ namespace System.Linq.Expressions
         /// </summary>
         /// <typeparam name="T">The type of the expression.</typeparam>
         /// <param name="node">The expression to visit.</param>
-        /// <param name="callerName">The name of the calling method; used to report to report a better error message.</param>
+        /// <param name="callerName">The name of the calling method; used to report a better error message.</param>
         /// <returns>The modified expression, if it or any subexpression was modified;
         /// otherwise, returns the original expression.</returns>
         /// <exception cref="InvalidOperationException">The visit method for this node returned a different type.</exception>
@@ -146,7 +146,7 @@ namespace System.Linq.Expressions
         /// </summary>
         /// <typeparam name="T">The type of the expression.</typeparam>
         /// <param name="nodes">The expression to visit.</param>
-        /// <param name="callerName">The name of the calling method; used to report to report a better error message.</param>
+        /// <param name="callerName">The name of the calling method; used to report a better error message.</param>
         /// <returns>The modified expression, if it or any subexpression was modified;
         /// otherwise, returns the original expression.</returns>
         /// <exception cref="InvalidOperationException">The visit method for this node returned a different type.</exception>