typo fix in a comment
authorJim Meyering <meyering@redhat.com>
Sun, 22 Mar 2009 08:36:41 +0000 (09:36 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 23 Mar 2009 07:01:57 +0000 (08:01 +0100)
* lib/vasnprintf.c (divide): Fix a typo in a comment.

ChangeLog
lib/vasnprintf.c

index 81f963d..9e8f2f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-03-23  Jim Meyering  <meyering@redhat.com>
+
+       * lib/vasnprintf.c (divide): Fix typo in comment.
+
 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * gnulib-tool (func_filter_filelist): Fix comment.
index fa43ca6..ce4e44b 100644 (file)
@@ -413,7 +413,7 @@ divide (mpn_t a, mpn_t b, mpn_t *q)
        Normalise [q[m-1],...,q[0]], yields q.
      If m>=n>1, perform a multiple-precision division:
        We have a/b < beta^(m-n+1).
-       s:=intDsize-1-(hightest bit in b[n-1]), 0<=s<intDsize.
+       s:=intDsize-1-(highest bit in b[n-1]), 0<=s<intDsize.
        Shift a and b left by s bits, copying them. r:=a.
        r=[r[m],...,r[0]], b=[b[n-1],...,b[0]] with b[n-1]>=beta/2.
        For j=m-n,...,0: {Here 0 <= r < b*beta^(j+1).}