aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-06-02 12:53:15 -0700
committerRuss Cox <rsc@golang.org>2010-06-02 12:53:15 -0700
commit8ae29642b17950127314c6e59fcd919d945dd8de (patch)
tree9ac8fa5ad125c3ec3097c2fdc76677eb1f0059c3
parentc0b378ff5ca708702de41b2dea5b173ffe4200fc (diff)
downloadgo-8ae29642b17950127314c6e59fcd919d945dd8de.tar.gz
go-8ae29642b17950127314c6e59fcd919d945dd8de.zip
big: fix spelling of Euclidean
R=gri CC=golang-dev https://golang.org/cl/1372042
-rwxr-xr-xsrc/pkg/big/int.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/big/int.go b/src/pkg/big/int.go
index da4e1c83ca..873d5b50cf 100755
--- a/src/pkg/big/int.go
+++ b/src/pkg/big/int.go
@@ -225,12 +225,12 @@ func (z *Int) Mod(x, y *Int) *Int {
// and returns the pair (z, m) for y != 0.
// If y == 0, a division-by-zero run-time panic occurs.
//
-// DivMod implements Euclidian division and modulus (unlike Go):
+// DivMod implements Euclidean division and modulus (unlike Go):
//
// q = x div y such that
// m = x - y*q with 0 <= m < |q|
//
-// (See Raymond T. Boute, ``The Euclidian definition of the functions
+// (See Raymond T. Boute, ``The Euclidean definition of the functions
// div and mod''. ACM Transactions on Programming Languages and
// Systems (TOPLAS), 14(2):127-144, New York, NY, USA, 4/1992.
// ACM press.)