Skip to content

Commit

Permalink
Better warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
junder873 committed Oct 3, 2023
1 parent 8dc6cfc commit 7b16aaf
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 = "WRDSMerger"
uuid = "59d27aa3-834e-4232-9046-52ef43e86786"
authors = ["junder873 <junder873@gmail.com>"]
version = "0.5.1"
version = "0.5.2"

[deps]
DBInterface = "a10d1c49-ce27-4219-8d33-6db1a4562965"
Expand Down
2 changes: 1 addition & 1 deletion src/links/creatingLinks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function Base.Dict(data::AbstractVector{L}) where {T1, T2, L<:AbstractLinkPair{T
temp = check_priority_errors.(values(out))
if any(temp)
@warn("There are $(sum(temp)) cases of overlapping identifiers linking " *
"$T1 -> $T2 that do not have a priority, links might be inconsistent")
"$T1 -> $T2 that do not have a priority, this might create unintended links")
end
out
end
Expand Down

2 comments on commit 7b16aaf

@junder873
Copy link
Owner Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

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

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.5.2 -m "<description of version>" 7b16aafe4147ffea968a8b1d7ef0f24c94f2af97
git push origin v0.5.2

Please sign in to comment.