diff options
author | Mark H Weaver <mhw@netris.org> | 2017-12-04 22:07:40 -0500 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-08-07 11:41:20 +0200 |
commit | 5f7213e12ce6923eb56570020711e5d96a04c1fd (patch) | |
tree | c983318db784249162262e0aeb491f93902b4e0f /libguile/numbers.c | |
parent | a600b9f186355704250d0072b795c2f65c654849 (diff) | |
download | guile-5f7213e12ce6923eb56570020711e5d96a04c1fd.tar.gz |
Fix typo in comment within numbers.c
Diffstat (limited to 'libguile/numbers.c')
-rw-r--r-- | libguile/numbers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/numbers.c b/libguile/numbers.c index a14597b7c..2c325b9fe 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -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) |