diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/ISQLServerDataSource.java b/src/main/java/com/microsoft/sqlserver/jdbc/ISQLServerDataSource.java index 9e02e154c..a0aedb4a5 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/ISQLServerDataSource.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/ISQLServerDataSource.java @@ -117,7 +117,7 @@ public interface ISQLServerDataSource extends javax.sql.CommonDataSource { public boolean getEncrypt(); /** - * Sets the value to enable/disable Transparent Netowrk IP Resolution (TNIR) Beginning in version 6.0 of the + * Sets the value to enable/disable Transparent Netowrk IP Resolution (TNIR). Beginning in version 6.0 of the * Microsoft JDBC Driver for SQL Server, a new connection property transparentNetworkIPResolution (TNIR) is added * for transparent connection to Always On availability groups or to a server which has multiple IP addresses * associated. When transparentNetworkIPResolution is true, the driver attempts to connect to the first IP address diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerColumnEncryptionJavaKeyStoreProvider.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerColumnEncryptionJavaKeyStoreProvider.java index cd0a2f755..b4ee6be76 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerColumnEncryptionJavaKeyStoreProvider.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerColumnEncryptionJavaKeyStoreProvider.java @@ -264,7 +264,7 @@ public byte[] encryptColumnEncryptionKey(String masterKeyPath, String encryption } /** - * Encrypt. plainText with the certificate provided. + * Encrypt plainText with the certificate provided. * * @param plainText * plain CEK to be encrypted diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnection.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnection.java index 5495ab9ba..18142be1d 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnection.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerConnection.java @@ -329,7 +329,7 @@ SqlFedAuthToken getAuthenticationResult() { } /** - * Eencapsulates the data to be sent to the server as part of Federated Authentication Feature Extension. + * Encapsulates the data to be sent to the server as part of Federated Authentication Feature Extension. */ class FederatedAuthenticationFeatureExtensionData { boolean fedAuthRequiredPreLoginResponse; diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerParameterMetaData.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerParameterMetaData.java index 9e2603f75..49cf07a34 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerParameterMetaData.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerParameterMetaData.java @@ -325,7 +325,7 @@ private void parseQueryMetaFor2008(ResultSet rsQueryMeta) throws SQLServerExcept } /** - * Parses escaped strings properly e.g.[Table Name, ] using tokenizer/ + * Parses escaped strings properly e.g.[Table Name, ] using tokenizer. * * @param st * string tokenizer diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPooledConnection.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPooledConnection.java index 9d178bc91..91b8a5144 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPooledConnection.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPooledConnection.java @@ -18,7 +18,7 @@ /** - * Represents a database physical connection in a connection pool. If provides methods for the connection pool manager + * Represents a physical database connection in a connection pool. If provides methods for the connection pool manager * to manage the connection pool. Applications typically do not instantiate these connections directly. */ diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.java index e96b550e7..56f888148 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerPreparedStatement.java @@ -335,10 +335,10 @@ final void closeInternal() { } /** - * Intializes the statement parameters. + * Initializes the statement parameters. * * @param nParams - * Number of parameters to Intialize. + * Number of parameters to initialize. */ final void initParams(int nParams) { inOutParam = new Parameter[nParams]; diff --git a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerStatement.java b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerStatement.java index ec37e6ffe..59fa8482b 100644 --- a/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerStatement.java +++ b/src/main/java/com/microsoft/sqlserver/jdbc/SQLServerStatement.java @@ -2331,7 +2331,7 @@ public final String getResponseBuffering() throws SQLServerException { /** - * Provides a help class that does some basic parsing work for SQL statements that are stored procedure calls. + * Provides a helper class that does some basic parsing work for SQL statements that are stored procedure calls. * * - Determines whether the SQL uses JDBC call syntax ("{[? =] call procedure_name...}") or T-SQL EXECUTE syntax ("EXEC * [@p0 =] procedure_name..."). If JDBC call syntax is present, it gets rewritten as T-SQL EXECUTE syntax.