From 508ce2819f537aed831f02c2c4f0b758b345ac61 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Tue, 17 Nov 2015 16:29:42 +0100 Subject: [PATCH] Minor: fix wording in Cash contract, suggestion from Richard. --- src/contracts/Cash.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contracts/Cash.kt b/src/contracts/Cash.kt index 82e56ff612..2b2c34980e 100644 --- a/src/contracts/Cash.kt +++ b/src/contracts/Cash.kt @@ -25,8 +25,8 @@ class InsufficientBalanceException(val amountMissing: Amount) : Exception() * the same transaction. * * The goal of this design is to ensure that money can be withdrawn from the ledger easily: if you receive some money - * via this contract, you always know where to go in order to extract it from the R3 ledger via a regular wire transfer, - * no matter how many hands it has passed through in the intervening time. + * via this contract, you always know where to go in order to extract it from the R3 ledger, no matter how many hands + * it has passed through in the intervening time. * * At the same time, other contracts that just want money and don't care much who is currently holding it in their * vaults can ignore the issuer/depositRefs and just examine the amount fields.