mhw pushed a commit to branch stable-2.2 in repository guile. commit 1951edff582a9d4ba66d5658f8bd307f8e71d635 Author: Mark H Weaver <m...@netris.org> Date: Mon Dec 4 22:07:40 2017 -0500
Fix typo in comment within numbers.c --- libguile/numbers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/numbers.c b/libguile/numbers.c index 3e0efc8..3e035d2 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)