]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: drop a superfluous semicolon.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 29 Jan 2023 20:57:35 +0000 (15:57 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 29 Jan 2023 20:57:35 +0000 (15:57 -0500)
mjo/eja/eja_element.py

index 0983ea0607a438464b3e9ab6245a344ba59a5aef..a832185502c7fafb16879ab3a08084499d3582ab 100644 (file)
@@ -1561,7 +1561,7 @@ class FiniteDimensionalEJAElement(IndexedFreeModuleElement):
             sage: x.trace_inner_product(y) == y.trace_inner_product(x)
             True
             sage: # bilinear
-            sage: a = J.base_ring().random_element();
+            sage: a = J.base_ring().random_element()
             sage: actual = (a*(x+z)).trace_inner_product(y)
             sage: expected = ( a*x.trace_inner_product(y) +
             ....:              a*z.trace_inner_product(y) )