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 @@ public interface DaprClient extends AutoCloseable { /** * 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 @@ public interface DaprClient extends AutoCloseable { /** * 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 @@ public interface DaprClient extends AutoCloseable { /** * 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 @@ public interface DaprClient extends AutoCloseable { /** * 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 @@ public interface DaprClient extends AutoCloseable { /** * 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 @@ public interface DaprClient extends AutoCloseable { /** * 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.