diff --git a/spring-core/src/main/java/org/springframework/core/convert/support/MapToMapConverter.java b/spring-core/src/main/java/org/springframework/core/convert/support/MapToMapConverter.java index 5b791f966d..0272649e93 100644 --- a/spring-core/src/main/java/org/springframework/core/convert/support/MapToMapConverter.java +++ b/spring-core/src/main/java/org/springframework/core/convert/support/MapToMapConverter.java @@ -33,7 +33,7 @@ import org.springframework.lang.Nullable; * *
First, creates a new Map of the requested targetType with a size equal to the * size of the source Map. Then copies each element in the source map to the target map. - * Will perform a conversion from the source maps's parameterized K,V types to the target + * Will perform a conversion from the source map's parameterized K,V types to the target * map's parameterized types K,V if necessary. * * @author Keith Donald diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/core/simple/SimpleJdbcCallOperations.java b/spring-jdbc/src/main/java/org/springframework/jdbc/core/simple/SimpleJdbcCallOperations.java index 4c81f1b289..226ccd3aa4 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/core/simple/SimpleJdbcCallOperations.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/core/simple/SimpleJdbcCallOperations.java @@ -48,14 +48,14 @@ public interface SimpleJdbcCallOperations { SimpleJdbcCallOperations withFunctionName(String functionName); /** - * Optionally, specify the name of the schema that contins the stored procedure. + * Optionally, specify the name of the schema that contains the stored procedure. * @param schemaName the name of the schema * @return the instance of this SimpleJdbcCall */ SimpleJdbcCallOperations withSchemaName(String schemaName); /** - * Optionally, specify the name of the catalog that contins the stored procedure. + * Optionally, specify the name of the catalog that contains the stored procedure. *
To provide consistency with the Oracle DatabaseMetaData, this is used to specify the * package name if the procedure is declared as part of a package. * @param catalogName the catalog or package name diff --git a/spring-messaging/src/main/java/org/springframework/messaging/simp/SimpMessageMappingInfo.java b/spring-messaging/src/main/java/org/springframework/messaging/simp/SimpMessageMappingInfo.java index 31c194d1f6..129c8b1b4a 100644 --- a/spring-messaging/src/main/java/org/springframework/messaging/simp/SimpMessageMappingInfo.java +++ b/spring-messaging/src/main/java/org/springframework/messaging/simp/SimpMessageMappingInfo.java @@ -23,7 +23,7 @@ import org.springframework.messaging.handler.DestinationPatternsMessageCondition import org.springframework.messaging.handler.MessageCondition; /** - * {@link MessageCondition} for SImple Messaging Protocols. Encapsulates the following + * {@link MessageCondition} for Simple Messaging Protocols. Encapsulates the following * request mapping conditions: *
If no MultipartResolver bean is found, this filter falls back to a default
* MultipartResolver: {@link StandardServletMultipartResolver} for Servlet
- * oontainers, based on a multipart-config section in {@code web.xml}.
+ * containers, based on a multipart-config section in {@code web.xml}.
* Note however that at present the Servlet specification only defines how to
* enable multipart configuration on a Servlet and as a result multipart request
* processing is likely not possible in a Filter unless the Servlet container
diff --git a/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMethodMapping.java b/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMethodMapping.java
index f1a58a16d4..43a2d230fd 100644
--- a/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMethodMapping.java
+++ b/spring-webmvc/src/main/java/org/springframework/web/servlet/handler/AbstractHandlerMethodMapping.java
@@ -478,8 +478,8 @@ public abstract class AbstractHandlerMethodMapping