summaryrefslogtreecommitdiff
path: root/libguile/numbers.c
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2017-12-04 22:07:40 -0500
committerAndy Wingo <wingo@pobox.com>2018-08-07 11:41:20 +0200
commit5f7213e12ce6923eb56570020711e5d96a04c1fd (patch)
treec983318db784249162262e0aeb491f93902b4e0f /libguile/numbers.c
parenta600b9f186355704250d0072b795c2f65c654849 (diff)
downloadguile-5f7213e12ce6923eb56570020711e5d96a04c1fd.tar.gz
Fix typo in comment within numbers.c
Diffstat (limited to 'libguile/numbers.c')
-rw-r--r--libguile/numbers.c2
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)