From 2441289743fc38788dff4e4039ef259274ce88c5 Mon Sep 17 00:00:00 2001 From: Alex Peters <80283343+alexpeters1208@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:24:44 -0500 Subject: [PATCH] Fix typo in delta method 'cols' docstring (#4526) --- py/server/deephaven/updateby.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/server/deephaven/updateby.py b/py/server/deephaven/updateby.py index 755c83df751..a89085a07bf 100644 --- a/py/server/deephaven/updateby.py +++ b/py/server/deephaven/updateby.py @@ -574,7 +574,7 @@ def delta(cols: Union[str, List[str]], delta_control: DeltaControl = DeltaContro Args: cols (Union[str, List[str]]): the column(s) to be operated on, can include expressions to rename the output, - i.e. "new_col = col"; when empty, update_by performs the cumulative sum operation on all the applicable + i.e. "new_col = col"; when empty, update_by performs the delta operation on all the applicable columns. delta_control (DeltaControl): defines how special cases should behave; when None, the default DeltaControl settings of VALUE_DOMINATES will be used