From e7644cb292e035d29b52cd478377efeee5906a93 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Tue, 6 Apr 2004 00:17:41 +0000 Subject: [PATCH] (scm_ash): Remove stray "}" in docstring. --- libguile/numbers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/numbers.c b/libguile/numbers.c index 9c980760d..6ea71b65e 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -1749,7 +1749,7 @@ SCM_DEFINE (scm_ash, "ash", 2, 0, 0, "Return @var{n} shifted left by @var{cnt} bits, or shifted right\n" "if @var{cnt} is negative. This is an ``arithmetic'' shift.\n" "\n" - "This is effectively a multiplication by 2^@var{cnt}}, and when\n" + "This is effectively a multiplication by 2^@var{cnt}, and when\n" "@var{cnt} is negative it's a division, rounded towards negative\n" "infinity. (Note that this is not the same rounding as\n" "@code{quotient} does.)\n"