]> Cypherpunks repositories - gostls13.git/commit
math/big: fix misuse of Unicode
authorRuss Cox <rsc@golang.org>
Mon, 7 Dec 2015 14:52:31 +0000 (09:52 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 11 Dec 2015 03:37:57 +0000 (03:37 +0000)
commit0816432918ee0e4f1cf06b2a3100935e6293788b
tree559bc432345bd2522212a006b76d6a1b2547cdab
parent251e50065b99eb6c40b6cc549b3bea9126e96bde
math/big: fix misuse of Unicode

ˆ (U+02C6) is a circumflex accent, not an exponentiation operator.
In the rest of the source code for this package, exponentation is
written as **, so do the same here.

Change-Id: I107b85be242ab79d152eb8a6fcf3ca2b197d7658
Reviewed-on: https://go-review.googlesource.com/17671
Reviewed-by: Robert Griesemer <gri@golang.org>
src/math/big/nat.go