From 3a9e6e606caf72760a337d9779cae4fabeec60e6 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Wed, 8 Feb 2023 14:58:18 +0100 Subject: [PATCH] Fix typo in the Javadoc of JobParameter --- .../main/java/org/springframework/batch/core/JobParameter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/JobParameter.java b/spring-batch-core/src/main/java/org/springframework/batch/core/JobParameter.java index be7df9fd6..5b1811e93 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/JobParameter.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/JobParameter.java @@ -43,7 +43,7 @@ public class JobParameter implements Serializable { private boolean identifying; /** - * reate a new {@link JobParameter}. + * Create a new {@link JobParameter}. * @param value the value of the parameter. Must not be {@code null}. * @param type the type of the parameter. Must not be {@code null}. * @param identifying true if the parameter is identifying. false otherwise.