Skip to content

Commit

Permalink
fix deprecation number
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Jan 10, 2025
1 parent 0692cba commit 4002f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/misc/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ def krull_dimension(x):
sage: krull_dimension(QQ)
doctest:warning...:
DeprecationWarning: please use the krull_dimension method
See https://github.com/sagemath/sage/issues/44444 for details.
See https://github.com/sagemath/sage/issues/39311 for details.
0
sage: ZZ.krull_dimension()
1
Expand All @@ -932,7 +932,7 @@ def krull_dimension(x):
sage: U.krull_dimension()
4
"""
deprecation(44444, "please use the krull_dimension method")
deprecation(39311, "please use the krull_dimension method")
return x.krull_dimension()


Expand Down

0 comments on commit 4002f27

Please sign in to comment.