From: Michael Orlitzky Date: Thu, 29 Aug 2019 15:45:31 +0000 (-0400) Subject: eja: fix a copy/paste-o. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=33b5476e1422a36972979e768f1829cec1b421a5;p=sage.d.git eja: fix a copy/paste-o. --- diff --git a/mjo/eja/eja_algebra.py b/mjo/eja/eja_algebra.py index c131c5f..7c2eda2 100644 --- a/mjo/eja/eja_algebra.py +++ b/mjo/eja/eja_algebra.py @@ -1540,7 +1540,7 @@ class QuaternionMatrixEuclideanJordanAlgebra(MatrixEuclideanJordanAlgebra): if M.ncols() != n: raise ValueError("the matrix 'M' must be square") if not n.mod(4).is_zero(): - raise ValueError("the matrix 'M' must be a complex embedding") + raise ValueError("the matrix 'M' must be a quaternion embedding") # Use the base ring of the matrix to ensure that its entries can be # multiplied by elements of the quaternion algebra.