Skip to content

Commit 1db8a42

Browse files
committed
Changed the call to the product representation in ExactTerm._repr_ to self._repr_product_(latex=latex)
1 parent 7af743f commit 1db8a42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/rings/asymptotic/term_monoid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3390,7 +3390,7 @@ def _repr_(self, latex=False):
33903390
sage: (1+a)/n
33913391
(a + 1)*n^(-1)
33923392
"""
3393-
return self._repr_product_(latex)
3393+
return self._repr_product_(latex=latex)
33943394

33953395
def _latex_(self):
33963396
r"""

0 commit comments

Comments
 (0)