diff --git a/experimental/PlaneCurve/ParaPlaneCurves.jl b/experimental/PlaneCurve/ParaPlaneCurves.jl index c197bc0bd79c..6e91b1d57e02 100644 --- a/experimental/PlaneCurve/ParaPlaneCurves.jl +++ b/experimental/PlaneCurve/ParaPlaneCurves.jl @@ -204,7 +204,6 @@ julia> I = ideal(R, V); julia> RNC = ProjCurve(I) Projective curve defined by the ideal(v*x - w^2, v*y - w*x, w*y - x^2, v*z - w*y, w*z - x*y, x*z - y^2) - julia> rat_normal_curve_anticanonical_map(RNC) 3-element Vector{MPolyElem_dec{fmpq, fmpq_mpoly}}: x @@ -287,7 +286,6 @@ julia> I = ideal(R, V); julia> RNC = ProjCurve(I) Projective curve defined by the ideal(v*x - w^2, v*y - w*x, w*y - x^2, v*z - w*y, w*z - x*y, x*z - y^2) - julia> rat_normal_curve_It_Proj_Even(RNC) Projective plane curve defined by -y(1)*y(3) + y(2)^2 ``` diff --git a/experimental/PlaneCurve/ProjCurve.jl b/experimental/PlaneCurve/ProjCurve.jl index 16df9a16f3b9..76e4d04a7974 100644 --- a/experimental/PlaneCurve/ProjCurve.jl +++ b/experimental/PlaneCurve/ProjCurve.jl @@ -42,9 +42,9 @@ mutable struct ProjCurve <: ProjectiveCurve function Base.show(io::IO, C::ProjCurve) if !get(io, :compact, false) - println(io, "Projective curve defined by the ", C.I) + print(io, "Projective curve defined by the ", C.I) else - println(io, C.I) + print(io, C.I) end end end