diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Sequence.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Sequence.java
index 9bb94a1b24e..94bc07f11f4 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Sequence.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/Sequence.java
@@ -40,13 +40,13 @@ import org.eclipse.core.runtime.SubProgressMonitor;
*
2. the method is executed by a subsystem
*
3. when the method is finished it calls another method and passes
* the original callback to it
- *
4. steps 2-3 are repeated number of times
+ *
4. steps 2-3 are repeated a number of times
*
5. when the last method in a chain is executed, it submits the original
* RequestMonitor callback
*
*
* This pattern is very useful in itself, but it proves very difficult to follow - * because the methods can be scattered accross many classes and systems. Also + * because the methods can be scattered across many classes and systems. Also * if progress reporting, cancellability, and roll-back ability is required, it * has to be re-implemented every time. The Sequence class tries to address * this problem by containing this pattern in a single class.