Modified: 
tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java?rev=1778199&r1=1778198&r2=1778199&view=diff
==============================================================================
--- 
tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java
 (original)
+++ 
tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java
 Tue Jan 10 21:10:26 2017
@@ -57,7 +57,7 @@ public final class Room {
          */
         ERROR('0'),
         /**
-         * '1': DrawMesssage: contains serialized DrawMessage(s) prefixed
+         * '1': DrawMessage: contains serialized DrawMessage(s) prefixed
          *      with the current Player's {@link Player#lastReceivedMessageId}
          *      and ",".<br>
          *      Multiple draw messages are concatenated with "|" as separator.
@@ -182,7 +182,7 @@ public final class Room {
         // Add the new player to the list.
         players.add(p);
 
-        // If currently no Broacast Timer Task is scheduled, then we need to 
create one.
+        // If currently no Broadcast Timer Task is scheduled, then we need to 
create one.
         if (activeBroadcastTimerTask == null) {
             activeBroadcastTimerTask = createBroadcastTimerTask();
             drawmessageBroadcastTimer.schedule(activeBroadcastTimerTask,
@@ -223,7 +223,7 @@ public final class Room {
             // Note that it can happen that the TimerTask is just about to 
execute (from
             // the Timer thread) but waits until all players are gone (or even 
until a new
             // player is added to the list), and then executes. This is OK. To 
prevent it,
-            // a TimerTask subclass would need to have some boolan "cancel" 
instance variable and
+            // a TimerTask subclass would need to have some boolean "cancel" 
instance variable and
             // query it in the invocation of Room#invokeAndWait.
             activeBroadcastTimerTask.cancel();
             activeBroadcastTimerTask = null;
@@ -356,7 +356,7 @@ public final class Room {
 
             roomLock.lock();
             try {
-                // Explicitely overwrite value to ensure data consistency in
+                // Explicitly overwrite value to ensure data consistency in
                 // current thread
                 cachedRunnables = null;
 

Modified: tomcat/tc7.0.x/trunk/webapps/examples/websocket/drawboard.xhtml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/examples/websocket/drawboard.xhtml?rev=1778199&r1=1778198&r2=1778199&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/examples/websocket/drawboard.xhtml (original)
+++ tomcat/tc7.0.x/trunk/webapps/examples/websocket/drawboard.xhtml Tue Jan 10 
21:10:26 2017
@@ -379,7 +379,7 @@
                     var handleOnMessage = function(message) {
 
                         // Split joined message and process them
-                        // invidividually.
+                        // individually.
                         var messages = message.data.split(";");
                         for (var msgArrIdx = 0; msgArrIdx < messages.length;
                                 msgArrIdx++) {

Modified: tomcat/tc7.0.x/trunk/webapps/host-manager/WEB-INF/jsp/403.jsp
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/host-manager/WEB-INF/jsp/403.jsp?rev=1778199&r1=1778198&r2=1778199&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/host-manager/WEB-INF/jsp/403.jsp (original)
+++ tomcat/tc7.0.x/trunk/webapps/host-manager/WEB-INF/jsp/403.jsp Tue Jan 10 
21:10:26 2017
@@ -41,7 +41,7 @@
     application. You will need to reset this protection by returning to the
     <a href="<%=request.getContextPath()%>/html">main Host Manager page</a>.
     Once you return to this page, you will be able to continue using the Host
-    Manager appliction's HTML interface normally. If you continue to see this
+    Manager application's HTML interface normally. If you continue to see this
     access denied message, check that you have the necessary permissions to
     access this application.
    </p>

Modified: tomcat/tc7.0.x/trunk/webapps/manager/WEB-INF/jsp/403.jsp
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/manager/WEB-INF/jsp/403.jsp?rev=1778199&r1=1778198&r2=1778199&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/manager/WEB-INF/jsp/403.jsp (original)
+++ tomcat/tc7.0.x/trunk/webapps/manager/WEB-INF/jsp/403.jsp Tue Jan 10 
21:10:26 2017
@@ -41,7 +41,7 @@
     will need to reset this protection by returning to the
     <a href="<%=request.getContextPath()%>/html">main Manager page</a>. Once 
you
     return to this page, you will be able to continue using the Manager
-    appliction's HTML interface normally. If you continue to see this access
+    application's HTML interface normally. If you continue to see this access
     denied message, check that you have the necessary permissions to access 
this
     application.
    </p>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to