Skip to content

Commit e628c2a

Browse files
committed
Update comment
1 parent d2850c8 commit e628c2a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using JetBrains.Annotations;
2-
using System.Collections;
1+
using System.Collections;
32
using System.Collections.Generic;
43
using System.ComponentModel;
54
using System.Globalization;
@@ -11,6 +10,7 @@
1110
using System.Linq.Dynamic.Core.Validation;
1211
using System.Linq.Expressions;
1312
using System.Reflection;
13+
using JetBrains.Annotations;
1414

1515
namespace System.Linq.Dynamic.Core.Parser
1616
{
@@ -49,9 +49,9 @@ public class ExpressionParser
4949
/// <summary>
5050
/// There was a problem when an expression contained multiple lambdas where
5151
/// the ItName was not cleared and freed for the next lambda. This variable
52-
/// store the ItName of the last parsed lambda. Not used internally by
53-
/// ExpressionParser, but used to preserve compatiblity of parsingConfig.RenameParameterExpression
54-
/// which was designed to wonly work with mono-lambda expressions
52+
/// stores the ItName of the last parsed lambda.
53+
/// Not used internally by ExpressionParser, but used to preserve compatiblity of parsingConfig.RenameParameterExpression
54+
/// which was designed to only work with mono-lambda expressions.
5555
/// </summary>
5656
public string LastLambdaItName { get; private set; } = KeywordsHelper.KEYWORD_IT;
5757

0 commit comments

Comments
 (0)