Skip to content

Commit fb399ef

Browse files
author
Sébastien Geiser
committed
some comments enhancement and incrementation of version (for unstable state)
1 parent 7e40497 commit fb399ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/******************************************************************************************************
22
Title : ExpressionEvaluator (https://github.com/codingseb/ExpressionEvaluator)
3-
Version : 1.4.6.0
3+
Version : 1.4.6.1
44
(if last digit (the forth) is not a zero, the version is an intermediate version and can be unstable)
55
66
Author : Coding Seb
@@ -817,7 +817,7 @@ public BindingFlags StaticBindingFlag
817817
#region Custom and on the fly variables and methods
818818

819819
/// <summary>
820-
/// If set, this object is used to use it's properties and methods as global variables and functions
820+
/// If set, this object is used to use it's fields, properties and methods as global variables and functions
821821
/// </summary>
822822
public object Context { get; set; }
823823

@@ -884,7 +884,7 @@ public ExpressionEvaluator(IDictionary<string, object> variables) : this()
884884
/// <summary>
885885
/// Constructor with context initialize
886886
/// </summary>
887-
/// <param name="context">the context that propose it's methods and properties to the evaluation</param>
887+
/// <param name="context">the context that propose it's fields, properties and methods to the evaluation</param>
888888
public ExpressionEvaluator(object context) : this()
889889
{
890890
Context = context;
@@ -893,7 +893,7 @@ public ExpressionEvaluator(object context) : this()
893893
/// <summary>
894894
/// Constructor with variables and context initialize
895895
/// </summary>
896-
/// <param name="context">the context that propose it's methods and properties to the evaluation</param>
896+
/// <param name="context">the context that propose it's fields, properties and methods to the evaluation</param>
897897
/// <param name="variables">The Values of variables use in the expressions</param>
898898
public ExpressionEvaluator(object context, IDictionary<string, object> variables) : this()
899899
{

0 commit comments

Comments
 (0)