summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2017-12-04 22:07:40 -0500
committerMark H Weaver <mhw@netris.org>2018-06-11 10:12:35 -0400
commit1951edff582a9d4ba66d5658f8bd307f8e71d635 (patch)
treea40916f5a534cd8fc98f89e37db4c0c5e56e6313
parent9a72e212622fa3bd118d7c02c4386601285b3224 (diff)
downloadguile-1951edff582a9d4ba66d5658f8bd307f8e71d635.tar.gz
Fix typo in comment within 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 3e0efc8bb..3e035d226 100644
--- a/libguile/numbers.c
+++ b/libguile/numbers.c
@@ -154,7 +154,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)