1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Fix typo in comment within numbers.c

This commit is contained in:
Mark H Weaver 2017-12-04 22:07:40 -05:00 committed by Andy Wingo
parent a600b9f186
commit 5f7213e12c

View file

@ -153,7 +153,7 @@ static SCM flo_log10e;
#define SCM_SWAP(x, y) do { SCM __t = x; x = y; y = __t; } while (0)
/* FLOBUFLEN is the maximum number of characters neccessary for the
/* FLOBUFLEN is the maximum number of characters necessary for the
* printed or scm_string representation of an inexact number.
*/
#define FLOBUFLEN (40+2*(sizeof(double)/sizeof(char)*SCM_CHAR_BIT*3+9)/10)