From 1d465e233d3bcc8a49a73698f0f345ca70e54866 Mon Sep 17 00:00:00 2001 From: Aldo Canepa Garay <87341702+aldo-expensify@users.noreply.github.com> Date: Wed, 16 Aug 2023 10:35:27 -0700 Subject: [PATCH] Fix comment Co-authored-by: Maria D'Costa --- src/libs/CurrencyUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/CurrencyUtils.js b/src/libs/CurrencyUtils.js index c7ba50ed14e4..271086ede36e 100644 --- a/src/libs/CurrencyUtils.js +++ b/src/libs/CurrencyUtils.js @@ -112,7 +112,7 @@ function convertToDisplayString(amountInCents, currency = CONST.CURRENCY.USD) { style: 'currency', currency, - // We are forcindg the number of decimals because we overridden the default number of decimals in the backend for RSD + // We are forcing the number of decimals because we override the default number of decimals in the backend for RSD // See: https://github.com/Expensify/PHP-Libs/pull/834 minimumFractionDigits: currency === 'RSD' ? getCurrencyDecimals(currency) : undefined, });