Fix a typo
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / main / java / org / opendaylight / controller / md / sal / dom / broker / impl / PingPongTransactionChain.java
index 6097b38bb223254fafb76509a903e604ac5b6209..c7e8ced21a4139b6d870dc4de1bb606834f4ad5f 100644 (file)
@@ -173,7 +173,7 @@ public final class PingPongTransactionChain implements DOMTransactionChain {
 
         if (!LOCKED_UPDATER.compareAndSet(this, null, newTx)) {
             delegateTx.cancel();
-            throw new IllegalStateException(String.format("New transaction %s raced with transacion %s", newTx, lockedTx));
+            throw new IllegalStateException(String.format("New transaction %s raced with transaction %s", newTx, lockedTx));
         }
 
         return newTx;