diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ThreadSafeAndProhibitedFromDsfExecutor.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ThreadSafeAndProhibitedFromDsfExecutor.java
index ca9472486ff..199e39e4632 100644
--- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ThreadSafeAndProhibitedFromDsfExecutor.java
+++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/ThreadSafeAndProhibitedFromDsfExecutor.java
@@ -18,11 +18,11 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
- * Annotation idicating that given package, class, method, can be accessed on
+ * Annotation indicating that given package, class, method, can be accessed on
* any thread, except on the dispatch thread of given DsfExecutor.
*
This restriction is desirable if it is expected that the implementation
* behavior is to block the calling thread and execute a transaction using an
- * executor. In this situation, if the call is made on the executor's dispach
+ * executor. In this situation, if the call is made on the executor's dispatch
* thread, the execution would dead-lock.
*
* If declared on package or type, a field or method could still be declared