Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
byhill authored Feb 23, 2023
1 parent fd7d0c4 commit 0c356db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ elem = push!(s) # adds a single element in a new set; returns the new e
One may also use other element types:

```julia
a = DisjointSets{AbstractString}(["a", "b", "c", "d"])
union!(a, "a", "b")
in_same_set(a, "c", "d")
push!(a, "f")
s = DisjointSets{AbstractString}(["a", "b", "c", "d"])
union!(s, "a", "b")
in_same_set(s, "c", "d")
push!(s, "f")
```
etc...

2 comments on commit 0c356db

@byhill
Copy link
Owner Author

@byhill byhill commented on 0c356db Feb 23, 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/78310

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.0 -m "<description of version>" 0c356db99cb8d97f47c21f6d1258782f0d713544
git push origin v0.1.0

Please sign in to comment.