[infinispan-commits] Infinispan SVN: r2565 - in trunk/core/src/main/java/org/infinispan: context and 1 other directories.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Thu Oct 21 18:42:45 EDT 2010


Author: sannegrinovero
Date: 2010-10-21 18:42:44 -0400 (Thu, 21 Oct 2010)
New Revision: 2565

Modified:
   trunk/core/src/main/java/org/infinispan/config/Configuration.java
   trunk/core/src/main/java/org/infinispan/context/Flag.java
   trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java
Log:
typos in javadoc (trunk)

Modified: trunk/core/src/main/java/org/infinispan/config/Configuration.java
===================================================================
--- trunk/core/src/main/java/org/infinispan/config/Configuration.java	2010-10-21 22:36:49 UTC (rev 2564)
+++ trunk/core/src/main/java/org/infinispan/config/Configuration.java	2010-10-21 22:42:44 UTC (rev 2565)
@@ -375,7 +375,7 @@
    
    /**
     * 
-    * This is the timeout used to wait for an acknowledgment when making a remote call, after which
+    * This is the timeout (in ms) used to wait for an acknowledgment when making a remote call, after which
     * the call is aborted and an exception is thrown.
     * 
     * @param syncReplTimeout
@@ -1452,7 +1452,7 @@
    /**
     * If this element is present, all communications are asynchronous, in that whenever a thread
     * sends a message sent over the wire, it does not wait for an acknowledgment before returning.
-    * This element is mutually exclusive with the <sync /> element.<br />
+    * This element is mutually exclusive with the  <code> &lt;sync /&gt;</code> element.<br />
     * <br />
     * Characteristics of this can be tuned here.
     * 
@@ -1816,7 +1816,7 @@
    /**
     * If this element is present, all communications are synchronous, in that whenever a thread
     * sends a message sent over the wire, it blocks until it receives an acknowledgment from the
-    * recipient. This element is mutually exclusive with the <async /> element. <br />
+    * recipient. This element is mutually exclusive with the <code> &lt;async /&gt;</code> element. <br />
     * <br />
     * Characteristics of this can be tuned here.
     * 

Modified: trunk/core/src/main/java/org/infinispan/context/Flag.java
===================================================================
--- trunk/core/src/main/java/org/infinispan/context/Flag.java	2010-10-21 22:36:49 UTC (rev 2564)
+++ trunk/core/src/main/java/org/infinispan/context/Flag.java	2010-10-21 22:42:44 UTC (rev 2565)
@@ -15,7 +15,7 @@
  *                                                 configuration setting by ensuring lock managers use a 0-millisecond
  *                                                 lock acquisition timeout.  Useful if you only want to acquire a lock
  *                                                 on an entry <i>if and only if</i> the lock is uncontended.</li>
- *    <li>{@link #CACHE_MODE_LOCAL} - forces LOCAL mode opersation, even if the cache is configured to use a clustered
+ *    <li>{@link #CACHE_MODE_LOCAL} - forces LOCAL mode operation, even if the cache is configured to use a clustered
  *                                    mode like replication, invalidation or distribution.  Applying this flag will
  *                                    suppress any RPC messages otherwise associated with this invocation.</li>
  *    <li>{@link #SKIP_LOCKING} - bypasses lock acquisition for this invocation altogether.  A potentially dangerous
@@ -52,7 +52,7 @@
     */
    ZERO_LOCK_ACQUISITION_TIMEOUT,
    /**
-    * Forces LOCAL mode opersation, even if the cache is configured to use a clustered mode like replication,
+    * Forces LOCAL mode operation, even if the cache is configured to use a clustered mode like replication,
     * invalidation or distribution.  Applying this flag will suppress any RPC messages otherwise associated with this
     * invocation.
     */

Modified: trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java
===================================================================
--- trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java	2010-10-21 22:36:49 UTC (rev 2564)
+++ trunk/core/src/main/java/org/infinispan/loaders/CacheStore.java	2010-10-21 22:42:44 UTC (rev 2565)
@@ -118,7 +118,7 @@
     * <p/>
     * This method <i>may</b> be invoked on a transaction for which there is <i>no</i> prior {@link
     * #prepare(java.util.List, org.infinispan.transaction.xa.GlobalTransaction, boolean)}.  The implementation would
-    * need to deal with this case acordingly.  Typically, this would be a no-op, after ensuring any resources attached
+    * need to deal with this case accordingly.  Typically, this would be a no-op, after ensuring any resources attached
     * to the transaction are cleared up.
     * <p/>
     * Also note that this method <i>may</i> be invoked on a thread which is different from the {@link
@@ -136,7 +136,7 @@
     * <p/>
     * This method <i>may</b> be invoked on a transaction for which there is <i>no</i> prior {@link
     * #prepare(java.util.List, org.infinispan.transaction.xa.GlobalTransaction, boolean)}.  The implementation would
-    * need to deal with this case acordingly.  Typically, this would be a no-op, after ensuring any resources attached
+    * need to deal with this case accordingly.  Typically, this would be a no-op, after ensuring any resources attached
     * to the transaction are cleared up.
     * <p/>
     * Also note that this method <i>may</i> be invoked on a thread which is different from the {@link



More information about the infinispan-commits mailing list