Skip to content

Commit

Permalink
change :trac: to :issue:
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveWitteMorris committed Oct 14, 2023
1 parent 285966f commit f2dfb7b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/sage/plot/arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def arrow2d(tailpoint=None, headpoint=None, path=None, **options):
TESTS:
Verify that :trac:`36153` is fixed::
Verify that :issue:`36153` is fixed::
sage: A = arrow2d((-1,-1), (2,3), legend_label="test")
"""
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/circle.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def circle(center, radius, **options):
sage: P.aspect_ratio()
1.0
Verify that :trac:`36153` does not arise::
Verify that :issue:`36153` does not arise::
sage: C = circle((1,1), 1, legend_label="test")
"""
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def disk(point, radius, angle, **options):
...
ValueError: the center point of a plotted disk should have two or three coordinates
Verify that :trac:`36153` is fixed::
Verify that :issue:`36153` is fixed::
sage: D = disk((0, 0), 5, (0, pi/2), legend_label="test")
"""
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/ellipse.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def ellipse(center, r1, r2, angle=0, **options):
TESTS:
Verify that :trac:`36153` does not arise::
Verify that :issue:`36153` does not arise::
sage: E = ellipse((0,0), 2, 1, legend_label="test")
"""
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ def point2d(points, **options):
sage: point2d(iter([]))
Graphics object consisting of 0 graphics primitives
Verify that :trac:`36153` does not arise::
Verify that :issue:`36153` does not arise::
sage: P = point((0.5, 0.5), legend_label="test")
"""
Expand Down
2 changes: 1 addition & 1 deletion src/sage/plot/polygon.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def polygon2d(points, **options):
TESTS:
Verify that :trac:`36153` does not arise::
Verify that :issue:`36153` does not arise::
sage: P = polygon2d([[1,2], [5,6], [5,0]], legend_label="test")
Expand Down

0 comments on commit f2dfb7b

Please sign in to comment.