commit 5144ad82afa2a44e9c1cb4285ed0f03cf569555a parent 31063cc9f4e38e5baa61a018e13a7c0943fb485d Author: Antoine A <> Date: Wed, 28 May 2025 18:28:48 +0200 common: typo Diffstat:
| M | common/src/main/kotlin/TalerCommon.kt | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/src/main/kotlin/TalerCommon.kt b/common/src/main/kotlin/TalerCommon.kt @@ -323,7 +323,7 @@ sealed class Payto { fun expectIbanFull(): IbanPayto { val payto = expectIban() if (payto.receiverName == null) { - throw CommonError.Payto("expectd a full IBAN payto got no receiver-name") + throw CommonError.Payto("expected a full IBAN payto got no receiver-name") } return payto }