diff options
author | David Symonds <dsymonds@golang.org> | 2009-05-02 17:59:42 -0700 |
---|---|---|
committer | David Symonds <dsymonds@golang.org> | 2009-05-02 17:59:42 -0700 |
commit | 942ed6ca9c7e2a4c85befed7bfe0cca510b43e1d (patch) | |
tree | 6e88745188e37e1d9de2152522fae7a615a4d648 | |
parent | ad3bb09c72d5885c9f9692750be7f17229b17678 (diff) | |
download | golang-942ed6ca9c7e2a4c85befed7bfe0cca510b43e1d.tar.gz |
Fix mismatched quote in a comment.
R=gri
APPROVED=gri
DELTA=1 (0 added, 0 deleted, 1 changed)
OCL=28184
CL=28192
-rwxr-xr-x | src/lib/bignum.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/bignum.go b/src/lib/bignum.go index 7aeda43d1..b9ea66587 100755 --- a/src/lib/bignum.go +++ b/src/lib/bignum.go @@ -364,7 +364,7 @@ func div1(z, x []digit2, y digit2) digit2 { // used here. // // 1) D. Knuth, The Art of Computer Programming. Volume 2. Seminumerical -// Algorithms." Addison-Wesley, Reading, 1969. +// Algorithms. Addison-Wesley, Reading, 1969. // (Algorithm D, Sec. 4.3.1) // // 2) Henry S. Warren, Jr., Hacker's Delight. Addison-Wesley, 2003. |