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, });