killbill-aplcache

payment: trivial typo fix

8/11/2015 9:26:56 AM

Details

diff --git a/payment/src/main/java/org/killbill/billing/payment/core/janitor/IncompletePaymentAttemptTask.java b/payment/src/main/java/org/killbill/billing/payment/core/janitor/IncompletePaymentAttemptTask.java
index 6e54ed9..e7f2318 100644
--- a/payment/src/main/java/org/killbill/billing/payment/core/janitor/IncompletePaymentAttemptTask.java
+++ b/payment/src/main/java/org/killbill/billing/payment/core/janitor/IncompletePaymentAttemptTask.java
@@ -103,7 +103,7 @@ public class IncompletePaymentAttemptTask extends CompletionTaskBase<PaymentAtte
             }
         }));
 
-        // We only expect at most one transaction for a given attempt, but as a precaution we check for more; if this is the case we log a warn and continue processing rhe first one.
+        // We only expect at most one transaction for a given attempt, but as a precaution we check for more; if this is the case we log a warn and continue processing the first one.
         if (filteredTransactions.size() > 1) {
             log.warn("Found {} transactions for paymentAttempt {}", filteredTransactions.size(), attempt.getId());
         }