Skip to content

Commit ae74a21

Browse files
carsonmcdonaldcbeams
authored andcommitted
Fix typo {explictly => explicitly}
- cherry-pick of pull request #257, which originally applied to 3.2.x
1 parent 827e20e commit ae74a21

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

spring-aop/src/main/java/org/springframework/aop/target/CommonsPoolTargetSource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -38,7 +38,7 @@
3838
* of configuration properties that are relevant to your chosen implementation.
3939
*
4040
* <p>The {@code testOnBorrow}, {@code testOnReturn} and {@code testWhileIdle}
41-
* properties are explictly not mirrored because the implementation of
41+
* properties are explicitly not mirrored because the implementation of
4242
* {@code PoolableObjectFactory} used by this class does not implement
4343
* meaningful validation. All exposed Commons Pool properties use the corresponding
4444
* Commons Pool defaults: for example,

spring-context/src/main/java/org/springframework/remoting/rmi/RmiRegistryFactoryBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -181,7 +181,7 @@ protected Registry getRegistry(String registryHost, int registryPort,
181181
throws RemoteException {
182182

183183
if (registryHost != null) {
184-
// Host explictly specified: only lookup possible.
184+
// Host explicitly specified: only lookup possible.
185185
if (logger.isInfoEnabled()) {
186186
logger.info("Looking for RMI registry at port '" + registryPort + "' of host [" + registryHost + "]");
187187
}

spring-orm/src/main/java/org/springframework/orm/jdo/JdoTransactionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public PersistenceManagerFactory getPersistenceManagerFactory() {
154154
* The DataSource should match the one used by the JDO PersistenceManagerFactory:
155155
* for example, you could specify the same JNDI DataSource for both.
156156
* <p>If the PersistenceManagerFactory uses a DataSource as connection factory,
157-
* the DataSource will be autodetected: You can still explictly specify the
157+
* the DataSource will be autodetected: You can still explicitly specify the
158158
* DataSource, but you don't need to in this case.
159159
* <p>A transactional JDBC Connection for this DataSource will be provided to
160160
* application code accessing this DataSource directly via DataSourceUtils

spring-orm/src/main/java/org/springframework/orm/jpa/JpaTransactionManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public Map<String, Object> getJpaPropertyMap() {
216216
* The DataSource should match the one used by the JPA EntityManagerFactory:
217217
* for example, you could specify the same JNDI DataSource for both.
218218
* <p>If the EntityManagerFactory uses a known DataSource as connection factory,
219-
* the DataSource will be autodetected: You can still explictly specify the
219+
* the DataSource will be autodetected: You can still explicitly specify the
220220
* DataSource, but you don't need to in this case.
221221
* <p>A transactional JDBC Connection for this DataSource will be provided to
222222
* application code accessing this DataSource directly via DataSourceUtils
@@ -258,7 +258,7 @@ public DataSource getDataSource() {
258258
* Set the JPA dialect to use for this transaction manager.
259259
* Used for vendor-specific transaction management and JDBC connection exposure.
260260
* <p>If the EntityManagerFactory uses a known JpaDialect, it will be autodetected:
261-
* You can still explictly specify the DataSource, but you don't need to in this case.
261+
* You can still explicitly specify the DataSource, but you don't need to in this case.
262262
* <p>The dialect object can be used to retrieve the underlying JDBC connection
263263
* and thus allows for exposing JPA transactions as JDBC transactions.
264264
* @see EntityManagerFactoryInfo#getJpaDialect()

0 commit comments

Comments
 (0)