Skip to content

Commit f2dfb7b

Browse files
change :trac: to :issue:
1 parent 285966f commit f2dfb7b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/sage/plot/arrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ def arrow2d(tailpoint=None, headpoint=None, path=None, **options):
644644
645645
TESTS:
646646
647-
Verify that :trac:`36153` is fixed::
647+
Verify that :issue:`36153` is fixed::
648648
649649
sage: A = arrow2d((-1,-1), (2,3), legend_label="test")
650650
"""

src/sage/plot/circle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def circle(center, radius, **options):
407407
sage: P.aspect_ratio()
408408
1.0
409409
410-
Verify that :trac:`36153` does not arise::
410+
Verify that :issue:`36153` does not arise::
411411
412412
sage: C = circle((1,1), 1, legend_label="test")
413413
"""

src/sage/plot/disk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def disk(point, radius, angle, **options):
347347
...
348348
ValueError: the center point of a plotted disk should have two or three coordinates
349349
350-
Verify that :trac:`36153` is fixed::
350+
Verify that :issue:`36153` is fixed::
351351
352352
sage: D = disk((0, 0), 5, (0, pi/2), legend_label="test")
353353
"""

src/sage/plot/ellipse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def ellipse(center, r1, r2, angle=0, **options):
347347
348348
TESTS:
349349
350-
Verify that :trac:`36153` does not arise::
350+
Verify that :issue:`36153` does not arise::
351351
352352
sage: E = ellipse((0,0), 2, 1, legend_label="test")
353353
"""

src/sage/plot/point.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ def point2d(points, **options):
580580
sage: point2d(iter([]))
581581
Graphics object consisting of 0 graphics primitives
582582
583-
Verify that :trac:`36153` does not arise::
583+
Verify that :issue:`36153` does not arise::
584584
585585
sage: P = point((0.5, 0.5), legend_label="test")
586586
"""

src/sage/plot/polygon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def polygon2d(points, **options):
526526
527527
TESTS:
528528
529-
Verify that :trac:`36153` does not arise::
529+
Verify that :issue:`36153` does not arise::
530530
531531
sage: P = polygon2d([[1,2], [5,6], [5,0]], legend_label="test")
532532

0 commit comments

Comments
 (0)