Skip to content

Fix typos in Javadoc #25458

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -148,7 +148,7 @@ interface Builder {


/**
* 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 {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* 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
Expand Down