Skip to content

Commit

Permalink
Remove double ££
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjgalloway committed Jun 12, 2020
1 parent 0bdcd7f commit dd93a62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/CGTCalcCore/Presenter/TextPresenter.swift
Expand Up @@ -121,9 +121,9 @@ public class TextPresenter {
result += "\(assetEvent.id): \(dateFormatter.string(from: assetEvent.date)) \(assetEvent.asset) "
switch assetEvent.kind {
case .CapitalReturn(let amount, let value):
result += "CAPITAL RETURN on \(amount) for £\(self.formattedCurrency(value))"
result += "CAPITAL RETURN on \(amount) for \(self.formattedCurrency(value))"
case .Dividend(let amount, let value):
result += "DIVIDEND on \(amount) for £\(self.formattedCurrency(value))"
result += "DIVIDEND on \(amount) for \(self.formattedCurrency(value))"
}
result += "\n"
}
Expand Down

0 comments on commit dd93a62

Please sign in to comment.