From da6ae121a1de035c7265fe297875810256860ccd Mon Sep 17 00:00:00 2001 From: ytimocin Date: Mon, 2 Sep 2024 14:10:53 -0700 Subject: [PATCH] Fixing typo in invokeBinding functions' definitions Signed-off-by: ytimocin --- sdk/src/main/java/io/dapr/client/DaprClient.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sdk/src/main/java/io/dapr/client/DaprClient.java b/sdk/src/main/java/io/dapr/client/DaprClient.java index 9b713f7c7..5a3fa0a79 100644 --- a/sdk/src/main/java/io/dapr/client/DaprClient.java +++ b/sdk/src/main/java/io/dapr/client/DaprClient.java @@ -244,7 +244,7 @@ Mono invokeMethod(String appId, String methodName, byte[] request, HttpE /** * Invokes a Binding operation. * - * @param bindingName The bindingName of the biding to call. + * @param bindingName The bindingName of the binding to call. * @param operation The operation to be performed by the binding request processor. * @param data The data to be processed, use byte[] to skip serialization. * @return an empty Mono. @@ -254,7 +254,7 @@ Mono invokeMethod(String appId, String methodName, byte[] request, HttpE /** * Invokes a Binding operation, skipping serialization. * - * @param bindingName The name of the biding to call. + * @param bindingName The name of the binding to call. * @param operation The operation to be performed by the binding request processor. * @param data The data to be processed, skipping serialization. * @param metadata The metadata map. @@ -265,7 +265,7 @@ Mono invokeMethod(String appId, String methodName, byte[] request, HttpE /** * Invokes a Binding operation. * - * @param bindingName The name of the biding to call. + * @param bindingName The name of the binding to call. * @param operation The operation to be performed by the binding request processor. * @param data The data to be processed, use byte[] to skip serialization. * @param type The type being returned. @@ -277,7 +277,7 @@ Mono invokeMethod(String appId, String methodName, byte[] request, HttpE /** * Invokes a Binding operation. * - * @param bindingName The name of the biding to call. + * @param bindingName The name of the binding to call. * @param operation The operation to be performed by the binding request processor. * @param data The data to be processed, use byte[] to skip serialization. * @param clazz The type being returned. @@ -289,7 +289,7 @@ Mono invokeMethod(String appId, String methodName, byte[] request, HttpE /** * Invokes a Binding operation. * - * @param bindingName The name of the biding to call. + * @param bindingName The name of the binding to call. * @param operation The operation to be performed by the binding request processor. * @param data The data to be processed, use byte[] to skip serialization. * @param metadata The metadata map. @@ -303,7 +303,7 @@ Mono invokeBinding(String bindingName, String operation, Object data, Map /** * Invokes a Binding operation. * - * @param bindingName The name of the biding to call. + * @param bindingName The name of the binding to call. * @param operation The operation to be performed by the binding request processor. * @param data The data to be processed, use byte[] to skip serialization. * @param metadata The metadata map.