From 1d5ea1e62c17855747456bfee3deb8d0e438e19d Mon Sep 17 00:00:00 2001 From: Matthew Wells Date: Thu, 1 Jun 2023 14:30:19 -0700 Subject: [PATCH] corrected function name from modoulo to modulus Signed-off-by: Matthew Wells --- .../sql/expression/operator/arthmetic/ArithmeticFunction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/opensearch/sql/expression/operator/arthmetic/ArithmeticFunction.java b/core/src/main/java/org/opensearch/sql/expression/operator/arthmetic/ArithmeticFunction.java index 20cb6dd51c..1f4ac3943c 100644 --- a/core/src/main/java/org/opensearch/sql/expression/operator/arthmetic/ArithmeticFunction.java +++ b/core/src/main/java/org/opensearch/sql/expression/operator/arthmetic/ArithmeticFunction.java @@ -141,7 +141,7 @@ private static DefaultFunctionResolver divideFunction() { } /** - * Definition of modulo(x, y) function. + * Definition of modulus(x, y) function. * Returns the number x modulo by number y * The supported signature of modulo function is * (x: BYTE/SHORT/INTEGER/LONG/FLOAT/DOUBLE, y: BYTE/SHORT/INTEGER/LONG/FLOAT/DOUBLE)