From e5f388c537b01e1c6d059e49fc16a3991afa0ebe Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Thu, 28 Mar 2024 19:42:44 -0700 Subject: [PATCH] Update Bind javadoc for multiple values The Bind expression takes values (plural). --- core/trino-main/src/main/java/io/trino/sql/ir/Bind.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/trino-main/src/main/java/io/trino/sql/ir/Bind.java b/core/trino-main/src/main/java/io/trino/sql/ir/Bind.java index e9c02ec993ea..4646e77db0f0 100644 --- a/core/trino-main/src/main/java/io/trino/sql/ir/Bind.java +++ b/core/trino-main/src/main/java/io/trino/sql/ir/Bind.java @@ -27,10 +27,10 @@ import static io.trino.sql.ir.IrUtils.validateType; /** - * Bind(value, targetFunction) + * Bind(values, targetFunction) *

- * When invoked, the returned function inserts the given value as - * the leading argument to the targetFunction. The other arguments are + * When invoked, the returned function inserts the given values as + * the leading arguments to the targetFunction. The other arguments are * passed unchanged. *

* Bind is fundamentally first class, just like function applications.