Skip to content

Commit cbf60fa

Browse files
Fix == to ===.
1 parent a741683 commit cbf60fa

File tree

1 file changed

+1
-1
lines changed
  • src/AlgebraicGeometry/Schemes/AffineSchemes/Morphisms

1 file changed

+1
-1
lines changed

Diff for: src/AlgebraicGeometry/Schemes/AffineSchemes/Morphisms/Methods.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function fiber_product(
1818
)
1919
Y = domain(f)
2020
X = codomain(f)
21-
X == codomain(g) || error("maps need to have the same codomain")
21+
X === codomain(g) || error("maps need to have the same codomain")
2222
Z = domain(g)
2323
YxZ, pY, pZ = product(Y, Z)
2424
RX = ambient_coordinate_ring(X)

0 commit comments

Comments
 (0)