Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
kwankyu committed Sep 1, 2022
1 parent d9982f3 commit e66bb26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/sage/schemes/projective/projective_morphism.py
Original file line number Diff line number Diff line change
Expand Up @@ -2293,10 +2293,10 @@ def __eq__(self, other):
True
sage: C = Curve(x^2 + y^2 - z^2)
sage: A.<u,v> = AffineSpace(QQ,2)
sage: i = C.hom([(x + z)/y, 1], A)
sage: j = C.hom([y/(z - x), 1], A)
sage: i == j
sage: A.<u> = AffineSpace(QQ, 1)
sage: f = C.hom([(x + z)/y], A)
sage: g = C.hom([y/(z - x)], A)
sage: f == g
True
"""
Y = self.codomain()
Expand Down

0 comments on commit e66bb26

Please sign in to comment.