From 2c121ddfaa7a504dd77f85033b7dbbcda5a88f04 Mon Sep 17 00:00:00 2001 From: dafnapension Date: Sun, 4 Feb 2024 14:03:25 +0200 Subject: [PATCH] fixed mentions in docstring Signed-off-by: dafnapension --- src/unitxt/operators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unitxt/operators.py b/src/unitxt/operators.py index 6b18e2d111..104ba85417 100644 --- a/src/unitxt/operators.py +++ b/src/unitxt/operators.py @@ -1286,11 +1286,11 @@ class ExecuteExpression(StreamInstanceOperator, ComputeExpressionMixin): Examples: When instance {"a": 2, "b": 3} is process-ed by operator - AssignExpression(expression="a+b", to_field = "c") + ExecuteExpression(expression="a+b", to_field = "c") the result is {"a": 2, "b": 3, "c": 5} When instance {"a": "hello", "b": "world"} is process-ed by operator - AssignExpression(expression = "a+' '+b", to_field = "c") + ExecuteExpression(expression = "a+' '+b", to_field = "c") the result is {"a": "hello", "b": "world", "c": "hello world"} """