Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Aug 29, 2019
1 parent d2850c8 commit e628c2a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using JetBrains.Annotations;
using System.Collections;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
Expand All @@ -11,6 +10,7 @@
using System.Linq.Dynamic.Core.Validation;
using System.Linq.Expressions;
using System.Reflection;
using JetBrains.Annotations;

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

Expand Down

0 comments on commit e628c2a

Please sign in to comment.