Skip to content

Commit

Permalink
fix typo bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Alessandro committed Aug 24, 2021
1 parent 4d0ff5e commit 54a3aab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TermInterface"
uuid = "8ea1fca8-c5ef-4a55-8b96-4e9afe9c9a3c"
authors = ["Shashi Gowda <[email protected]>", "Alessandro Cheli <[email protected]>"]
version = "0.1.2"
version = "0.1.3"

[compat]
julia = "1"
2 changes: 1 addition & 1 deletion src/TermInterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ and `metadata` as the metadata. By default this will execute `head(args...)`.
`x` parameter can also be a `Type`.
"""
similarterm(x, head, args, symtype=nothing; metadata=nothing) =
similarterm(typeof(x), head, args, type; metadata=nothing)
similarterm(typeof(x), head, args, symtype; metadata=nothing)

similarterm(x::Type{Expr}, head, args, symtype=nothing; metadata=nothing) = Expr(head, args...)
function similarterm(x::Type{T}, head::T, args, symtype=nothing; metadata=nothing) where T
Expand Down

2 comments on commit 54a3aab

@0x0f0f0f
Copy link
Member

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

Fixed typo bug that broke similarterm

@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/43447

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.1.3 -m "<description of version>" 54a3aabd296415fa0426c01833bf5b02366bf0bc
git push origin v0.1.3

Please sign in to comment.