diff --git a/docs/src/pages/docs/api/numberToHanuglMixed.ko.mdx b/docs/src/pages/docs/api/numberToHanuglMixed.ko.mdx index cf329d76..4b7f00c3 100644 --- a/docs/src/pages/docs/api/numberToHanuglMixed.ko.mdx +++ b/docs/src/pages/docs/api/numberToHanuglMixed.ko.mdx @@ -16,10 +16,10 @@ function numberToHangulMixed(input: number, options?: { spacing?: boolean }): st ## Examples ```tsx -numberToHangulMixed(21_0000); // '21만'; -numberToHangulMixed(1_2345); // '1만2,345'; -numberToHangulMixed(1_2345_6780); // '1억2,345만6,780'; -numberToHangulMixed(1_2345_6780, { spacing: true }); // '1억 2,345만 6,780'; +numberToHangulMixed(210_000); // '21만'; +numberToHangulMixed(12_345); // '1만2,345'; +numberToHangulMixed(123_456_780); // '1억2,345만6,780'; +numberToHangulMixed(123_456_780, { spacing: true }); // '1억 2,345만 6,780'; ``` ## 사용해보기