diff --git a/README.md b/README.md index a52f4a9..1f46672 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ repositories { ```groovy dependencies { /* ... */ - implementation 'org.jraf:klibqonto:2.1.1' + implementation 'org.jraf:klibqonto:2.2.0' } ``` diff --git a/library/src/commonMain/kotlin/org/jraf/klibqonto/model/transactions/Transaction.kt b/library/src/commonMain/kotlin/org/jraf/klibqonto/model/transactions/Transaction.kt index 8a06ef8..66cffad 100644 --- a/library/src/commonMain/kotlin/org/jraf/klibqonto/model/transactions/Transaction.kt +++ b/library/src/commonMain/kotlin/org/jraf/klibqonto/model/transactions/Transaction.kt @@ -191,7 +191,7 @@ interface Transaction { val attachmentRequired: Boolean /** - * If this transaction's []operationType] is [OperationType.CARD], this will contain the card's last few digits, or `null` otherwise. + * If this transaction's [operationType] is [OperationType.CARD], this will contain the card's last few digits, or `null` otherwise. */ val cardLastDigits: String? }