Browse Source

Fix typos in Javadoc

Closes gh-25458
pull/25461/head
Sungho Hwang 4 years ago committed by GitHub
parent
commit
2522fe0292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      spring-r2dbc/src/main/java/org/springframework/r2dbc/core/DatabaseClient.java
  2. 2
      spring-r2dbc/src/main/java/org/springframework/r2dbc/core/QueryOperation.java

4
spring-r2dbc/src/main/java/org/springframework/r2dbc/core/DatabaseClient.java

@ -69,7 +69,7 @@ public interface DatabaseClient extends ConnectionAccessor { @@ -69,7 +69,7 @@ public interface DatabaseClient extends ConnectionAccessor {
/**
* Specify a {@link Supplier SQL supplier} that provides SQL to run.
* Contract for specifying a SQL call along with options leading to
* Contract for specifying an SQL call along with options leading to
* the execution. The SQL string can contain either native parameter
* bind markers or named parameters (e.g. {@literal :foo, :bar}) when
* {@link NamedParameterExpander} is enabled.
@ -148,7 +148,7 @@ public interface DatabaseClient extends ConnectionAccessor { @@ -148,7 +148,7 @@ public interface DatabaseClient extends ConnectionAccessor {
/**
* Contract for specifying a SQL call along with options leading to the execution.
* Contract for specifying an SQL call along with options leading to the execution.
*/
interface GenericExecuteSpec {

2
spring-r2dbc/src/main/java/org/springframework/r2dbc/core/QueryOperation.java

@ -21,7 +21,7 @@ import java.util.function.Supplier; @@ -21,7 +21,7 @@ import java.util.function.Supplier;
/**
* Interface declaring a query operation that can be represented
* with a query string. This interface is typically implemented
* by classes representing a SQL operation such as {@code SELECT},
* by classes representing an SQL operation such as {@code SELECT},
* {@code INSERT}, and such.
*
* @author Mark Paluch

Loading…
Cancel
Save