Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 6b69822

Browse files
author
Travis Scrimshaw
committed
More docstring tweaks to Clifford algebra.
1 parent f759608 commit 6b69822

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/algebras/clifford_algebra.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ def lift_morphism(self, m, names=None):
694694
Cl = CliffordAlgebra(Q, names)
695695

696696
n = self._quadratic_form.dim()
697-
f = lambda x: self.prod(self.sum_of_terms(((j,), m[j][i]) for j in range(n))
697+
f = lambda x: self.prod(self.sum_of_terms(((j,), m[j,i]) for j in range(n))
698698
for i in x)
699699
return Cl.module_morphism(f, codomain=self,
700700
category=GradedAlgebrasWithBasis(self.base_ring()))
@@ -715,7 +715,7 @@ def lift_isometry(self, m, names=None):
715715
716716
OUTPUT:
717717
718-
THe morphism `\phi` from ``self`` to `Cl(W, \phi^{-1}(Q))
718+
The morphism `\phi` from ``self`` to `Cl(W, \phi^{-1}(Q)).
719719
720720
EXAMPLES::
721721
@@ -751,7 +751,7 @@ def lift_isometry(self, m, names=None):
751751
Cl = CliffordAlgebra(Q, names)
752752

753753
n = Q.dim()
754-
f = lambda x: Cl.prod(Cl.sum_of_terms(((j,), m[j][i]) for j in range(n))
754+
f = lambda x: Cl.prod(Cl.sum_of_terms(((j,), m[j,i]) for j in range(n))
755755
for i in x)
756756
return self.module_morphism(f, codomain=Cl,
757757
category=GradedAlgebrasWithBasis(self.base_ring()))

0 commit comments

Comments
 (0)