Fix another comment in comma.cal

This commit is contained in:
Landon Curt Noll
2022-06-20 19:39:11 -07:00
parent cfc6a6669c
commit 3e4391e2af

View File

@@ -366,7 +366,7 @@ define set_default_decimal_separator(decimal)
*/ */
define print_comma(x, group, decimal) define print_comma(x, group, decimal)
{ {
local ret; /* base 10 string with 3-digit group separators local ret; /* base 10 string with 3-digit group and integer-fraction separators */
/* /*
* convert to string * convert to string
@@ -419,7 +419,7 @@ define print_comma(x, group, decimal)
*/ */
define fprint_comma(fd, x, group, decimal) define fprint_comma(fd, x, group, decimal)
{ {
local ret; /* base 10 string with 3-digit group and integer-fraction separators */ local ret; /* base 10 string with 3-digit group and integer-fraction separators */
/* /*
* convert to string * convert to string