Replace 'e.g.' with 'for example' in documentation and comments

Closes gh-33515
This commit is contained in:
Yanming Zhou
2024-09-26 14:03:46 +02:00
committed by Sam Brannen
parent e55fe9077f
commit 8941e2876e
722 changed files with 1290 additions and 1290 deletions

View File

@@ -42,7 +42,7 @@ import org.springframework.util.Assert;
* <p>Note that at shutdown, someone should close the underlying
* {@code Connection} via the {@code close()} method. Client code will
* never call close on the {@code Connection} handle if it is
* SmartConnectionFactory-aware (e.g. uses
* SmartConnectionFactory-aware (for example, uses
* {@link ConnectionFactoryUtils#releaseConnection(Connection, ConnectionFactory)}).
*
* <p>If client code will call {@link Connection#close()} in the

View File

@@ -71,7 +71,7 @@ public interface DatabaseClient extends ConnectionAccessor {
/**
* Specify a static {@code sql} statement to run. 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.
* contain either native parameter bind markers or named parameters (for example,
* {@literal :foo, :bar}) when {@link NamedParameterExpander} is enabled.
* @param sql the SQL statement
* @return a new {@link GenericExecuteSpec}
@@ -84,7 +84,7 @@ public interface DatabaseClient extends ConnectionAccessor {
* Specify an {@linkplain Supplier SQL supplier} that provides SQL to run.
* 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
* bind markers or named parameters (for example, {@literal :foo, :bar}) when
* {@link NamedParameterExpander} is enabled.
* <p>Accepts {@link PreparedOperation} as SQL and binding {@link Supplier}.
* <p>{@code DatabaseClient} implementations should defer the resolution of