Skip to content

Commit 824e6d7

Browse files
Fixed equal spacing in doctest
Co-authored-by: Vincent Macri <vincent.macri@ucalgary.ca>
1 parent f3285c9 commit 824e6d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/categories/commutative_rings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ def sqrt(self, extend=True, all=False, name=None):
701701
sage: R.<x> = QQ[]
702702
sage: a = 2*(x+1)^2 / (2*(x-1)^2); a.sqrt()
703703
(x + 1)/(x - 1)
704-
sage: sqrtx=(1/x).sqrt(name='y'); sqrtx
704+
sage: sqrtx = (1/x).sqrt(name='y'); sqrtx
705705
y
706706
sage: sqrtx^2
707707
1/x

0 commit comments

Comments
 (0)