Author: violetagg
Date: Mon Jul 30 10:46:21 2018
New Revision: 1837044
URL: http://svn.apache.org/viewvc?rev=1837044&view=rev
Log:
Fixed spelling. Patch provided by Jimmy Casey via GitHub.
Modified:
tomcat/trunk/java/org/apache/tomcat/util/buf/package.html
tomcat/trunk/webapps/docs/changelog.xml
tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.java
Modified: tomcat/trunk/java/org/apache/tomcat/util/buf/package.html
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/buf/package.html?rev=1837044&r1=1837043&r2=1837044&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/buf/package.html (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/buf/package.html Mon Jul 30
10:46:21 2018
@@ -26,7 +26,7 @@ B2C converters are caching a ISReader/OS
in any VM without any garbage.
<p>
-This package must accomodate future extensions and additional converters (
most important: the nio.charset,
+This package must accommodate future extensions and additional converters (
most important: the nio.charset,
which should be detected and used if available ). Also, we do have one
hand-written UTF8Decoder, and
other tuned encoders could be added.
Modified: tomcat/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1837044&r1=1837043&r2=1837044&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Mon Jul 30 10:46:21 2018
@@ -173,6 +173,9 @@
Implement checksum checks when downloading dependencies that are used
to build Tomcat. (kkolinko)
</add>
+ <fix>
+ Fixed spelling. Patch provided by Jimmy Casey via GitHub. (violetagg)
+ </fix>
</changelog>
</subsection>
</section>
Modified:
tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.java?rev=1837044&r1=1837043&r2=1837044&view=diff
==============================================================================
---
tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.java
(original)
+++
tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Client.java
Mon Jul 30 10:46:21 2018
@@ -40,7 +40,7 @@ public class Client {
private final Async async;
/**
- * Contains the messages wich are buffered until the previous
+ * Contains the messages which are buffered until the previous
* send operation has finished.
*/
private final LinkedList<AbstractWebsocketMessage> messagesToSend =
@@ -201,7 +201,7 @@ public class Client {
// set isSendingMessage to false because we must assume the
connection
// broke (and onClose will be called), so we don't try to send
// other messages.
- // As a precaution, we close the session (e.g. if a send
timeout occured).
+ // As a precaution, we close the session (e.g. if a send
timeout occurred).
// TODO: session.close() blocks, while this handler shouldn't
block.
// Ideally, there should be some abort() method that cancels
the
// connection immediately...
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]