You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by sm...@apache.org on 2013/10/30 01:19:55 UTC

svn commit: r1536943 - /pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java

Author: smartini
Date: Wed Oct 30 00:19:54 2013
New Revision: 1536943

URL: http://svn.apache.org/r1536943
Log:
fix typo

Modified:
    pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java

Modified: pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java
URL: http://svn.apache.org/viewvc/pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java?rev=1536943&r1=1536942&r2=1536943&view=diff
==============================================================================
--- pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java (original)
+++ pivot/trunk/wtk/src/org/apache/pivot/wtk/ApplicationContext.java Wed Oct 30 00:19:54 2013
@@ -1121,7 +1121,7 @@ public abstract class ApplicationContext
                                                     && dragSource.getOffset() == null) {
                                                     throw new IllegalStateException(
                                                         "Drag offset is required when a "
-                                                            + " respresentation is specified.");
+                                                            + " representation is specified.");
                                                 }
 
                                                 if (display.isMouseOver()) {
@@ -1827,8 +1827,8 @@ public abstract class ApplicationContext
      * optionally waits for the task to complete.
      *
      * @param callback The task to execute.
-     * @param wait If <tt>true</tt>, does not return until the task has executed.
-     * Otherwise, returns immediately.
+     * @param wait If <tt>true</tt>, does not return until the task has
+     * executed. Otherwise, returns immediately.
      */
     public static QueuedCallback queueCallback(Runnable callback, boolean wait) {
         QueuedCallback queuedCallback = new QueuedCallback(callback);