Skip to content

Commit

Permalink
Add Dedent() after Indent() (#1462)
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma authored May 8, 2023
1 parent 75eda0e commit c72c02d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Nemo"
uuid = "2edaba10-b0f1-5616-af89-8c11ac63239a"
version = "0.34.0"
version = "0.34.1"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down
1 change: 1 addition & 0 deletions src/antic/nf_elem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ function Base.show(io::IO, ::MIME"text/plain", a::AnticNumberField)
println(io)
io = AbstractAlgebra.pretty(io)
print(io, AbstractAlgebra.Indent(), "over ", AbstractAlgebra.Lowercase(), QQ)
print(io, Dedent())
#print(IOContext(io, :supercompact => true))
end

Expand Down
1 change: 1 addition & 0 deletions src/embedding/EmbeddingTypes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ function show(io::IO, ::MIME"text/plain", f::FinFieldMorphism)
print(io, Indent(), "from ", Lowercase(), domain(f))
println(io)
print(io, "to ", Lowercase(), codomain(f))
print(io, Dedent())
end

function show(io::IO, f::FinFieldMorphism)
Expand Down

2 comments on commit c72c02d

@thofma
Copy link
Member Author

@thofma thofma commented on c72c02d May 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/83140

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.34.1 -m "<description of version>" c72c02d7af2d7af621540d4a084d128cddc53068
git push origin v0.34.1

Please sign in to comment.