From 9405d078f9cc4f80574c8fd775caea0e0dbe860c Mon Sep 17 00:00:00 2001 From: dsyer Date: Tue, 18 Dec 2007 17:48:28 +0000 Subject: [PATCH] Spelling error in comment --- .../batch/sample/tasklet/ExceptionRestartableTaskletTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-samples/src/test/java/org/springframework/batch/sample/tasklet/ExceptionRestartableTaskletTests.java b/spring-batch-samples/src/test/java/org/springframework/batch/sample/tasklet/ExceptionRestartableTaskletTests.java index 5279dc52a..f70c9fe77 100644 --- a/spring-batch-samples/src/test/java/org/springframework/batch/sample/tasklet/ExceptionRestartableTaskletTests.java +++ b/spring-batch-samples/src/test/java/org/springframework/batch/sample/tasklet/ExceptionRestartableTaskletTests.java @@ -23,7 +23,7 @@ public class ExceptionRestartableTaskletTests extends TestCase { public void testProcess() throws Exception { - //create mock item processor wich will be called by module.process() method + //create mock item processor which will be called by module.process() method MockControl processorControl = MockControl.createControl(ItemProcessor.class); ItemProcessor itemProcessor = (ItemProcessor)processorControl.getMock();