Skip to content

Commit

Permalink
src/sage/schemes/overview.py: Fix up # optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Mar 30, 2023
1 parent 289d256 commit 5065211
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sage/schemes/overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@
::
sage: R.<x> = ZZ[]
sage: S.<t> = R.quo(x^2 + 5) # optional - sage.rings.number_field
sage: P.<X,Y,Z> = ProjectiveSpace(2, S) # optional - sage.rings.number_field
sage: P(S) # optional - sage.rings.number_field
sage: S.<t> = R.quo(x^2 + 5)
sage: P.<X,Y,Z> = ProjectiveSpace(2, S)
sage: P(S)
Set of rational points of Projective Space of dimension 2 over
Univariate Quotient Polynomial Ring in t over Integer Ring with
modulus x^2 + 5
Expand All @@ -132,7 +132,7 @@
::
sage: P([2, 1 + t]) # optional - sage.rings.number_field
sage: P([2, 1 + t])
(2 : t + 1 : 1)
In fact, we need a test ``R.ideal([2, 1 + t]) == R.ideal([1])`` in order to make
Expand Down

0 comments on commit 5065211

Please sign in to comment.