summaryrefslogtreecommitdiffstats
path: root/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-02-09 10:14:25 +0100
committerJulien Nabet <serval2412@yahoo.fr>2014-02-09 10:14:25 +0100
commit5b066bc3efed187dd7e63973d2b9731a9eea31e8 (patch)
tree7e0cd5ad5ef4e101c21054b03a29b052116e9765 /odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
parentTypo: I/internaly -> I/internally (diff)
downloadcore-5b066bc3efed187dd7e63973d2b9731a9eea31e8.tar.gz
core-5b066bc3efed187dd7e63973d2b9731a9eea31e8.zip
Typo: (a)synchronoues -> a(synchronous)
Change-Id: Ia3871d711308eb38ed6e0df81615966cc142030d
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
index 22ce6388d1a8..33a6b3c79a4e 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
@@ -39,9 +39,9 @@ import java.util.ArrayList;
/**
* We need a generic interface to forward any oneway uno interface method
* by using threads to the original object. Reason:
- * It's not allowed to call synchronoues back to the office if a java object
+ * It's not allowed to call synchronous back to the office if a java object
* was called in a oneway declared interface method. Then it must be
- * executed asynchronoues. To do so - a thread can be created which use this
+ * executed asynchronous. To do so - a thread can be created which use this
* interface. It get the object, which whis to be called back and the type and
* parameter of the original request.
*