From 0df87d142eedc8bc1bca9852f016b85a7ef697fd Mon Sep 17 00:00:00 2001 From: John Cortell Date: Wed, 2 Sep 2009 15:15:41 +0000 Subject: [PATCH] Fixed typos in comment --- .../concurrent/ThreadSafeAndProhibitedFromDsfExecutor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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