Skip to content

Commit 32e9a72

Browse files
ksh8281bbrto21
authored andcommitted
Fix typo in Intl::initNumberFormatSkeleton
Signed-off-by: Seonghyun Kim <[email protected]>
1 parent 2a3447d commit 32e9a72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/intl/Intl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3526,8 +3526,8 @@ void Intl::initNumberFormatSkeleton(ExecutionState& state, const Intl::SetNumber
35263526
}
35273527

35283528
if (!formatResult.minimumFractionDigits.isUndefined()) {
3529-
double mnfd = formatResult.minimumSignificantDigits.asNumber();
3530-
double mxfd = formatResult.maximumSignificantDigits.asNumber();
3529+
double mnfd = formatResult.minimumFractionDigits.asNumber();
3530+
double mxfd = formatResult.maximumFractionDigits.asNumber();
35313531

35323532
skeleton += '.';
35333533

0 commit comments

Comments
 (0)