Skip to content

Commit

Permalink
Fix grammar / typo
Browse files Browse the repository at this point in the history
This change resolves issue found in PR review.  See
bisq-network#4703 (comment)
  • Loading branch information
ghubstan committed Oct 30, 2020
1 parent f764e9f commit 3cd3bf0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/src/main/java/bisq/cli/TableFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static String formatAddressBalanceTbl(List<AddressBalanceInfo> addressBalanceInf

static String formatOfferTable(List<OfferInfo> offerInfo, String fiatCurrency) {

// Some column values might be longer than header, so we need to calculated them.
// Some column values might be longer than header, so we need to calculate them.
int paymentMethodColWidth = getLengthOfLongestColumn(
COL_HEADER_PAYMENT_METHOD.length(),
offerInfo.stream()
Expand Down Expand Up @@ -100,7 +100,7 @@ static String formatOfferTable(List<OfferInfo> offerInfo, String fiatCurrency) {
}

static String formatPaymentAcctTbl(List<PaymentAccount> paymentAccounts) {
// Some column values might be longer than header, so we need to calculated them.
// Some column values might be longer than header, so we need to calculate them.
int nameColWidth = getLengthOfLongestColumn(
COL_HEADER_NAME.length(),
paymentAccounts.stream().map(PaymentAccount::getAccountName)
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/java/bisq/cli/TradeFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class TradeFormat {

@VisibleForTesting
public static String format(TradeInfo tradeInfo) {
// Some column values might be longer than header, so we need to calculated them.
// Some column values might be longer than header, so we need to calculate them.
int shortIdColWidth = Math.max(COL_HEADER_TRADE_SHORT_ID.length(), tradeInfo.getShortId().length());
int roleColWidth = Math.max(COL_HEADER_TRADE_ROLE.length(), tradeInfo.getRole().length());

Expand Down

0 comments on commit 3cd3bf0

Please sign in to comment.