You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by tr...@apache.org on 2008/05/22 06:36:10 UTC

svn commit: r659003 - /mina/branches/buffer/core/src/main/java/org/apache/mina/queue/CircularIoQueue.java

Author: trustin
Date: Wed May 21 21:36:09 2008
New Revision: 659003

URL: http://svn.apache.org/viewvc?rev=659003&view=rev
Log:
Fixed a typo

Modified:
    mina/branches/buffer/core/src/main/java/org/apache/mina/queue/CircularIoQueue.java

Modified: mina/branches/buffer/core/src/main/java/org/apache/mina/queue/CircularIoQueue.java
URL: http://svn.apache.org/viewvc/mina/branches/buffer/core/src/main/java/org/apache/mina/queue/CircularIoQueue.java?rev=659003&r1=659002&r2=659003&view=diff
==============================================================================
--- mina/branches/buffer/core/src/main/java/org/apache/mina/queue/CircularIoQueue.java (original)
+++ mina/branches/buffer/core/src/main/java/org/apache/mina/queue/CircularIoQueue.java Wed May 21 21:36:09 2008
@@ -41,7 +41,7 @@
 
     private final int initialCapacity;
     // XXX: This volatile keyword here is a workaround for SUN Java Compiler
-    //      bug, which produces buggy byte code.  I don't event know why adding
+    //      bug, which produces buggy byte code.  I don't even know why adding
     //      a volatile fixes the problem.  Eclipse Java Compiler seems to
     //      produce correct byte code.
     private volatile E[] items;