Skip to content

Commit

Permalink
Fixup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben J. Ward committed Jun 7, 2022
1 parent 014b503 commit f8ea398
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/kmer_iteration/EveryCanonicalKmer.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""
An iterator over every canonical valid overlapping `T<:Kmer` in a given longer `BioSequence`.
An iterator over every canonical valid overlapping `T<:Kmer` in a given longer
`BioSequence`, between a `start` and `stop` position.
!!! note
Typically, the alphabet of the Kmer type matches the alphabet of the input
Expand Down
2 changes: 1 addition & 1 deletion src/kmer_iteration/EveryKmer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

"""
An iterator over every valid overlapping `T<:Kmer` in a given longer
`BioSequence` between `start` and `stop`.
`BioSequence` between a `start` and `stop` position.
!!! note
Typically, the alphabet of the Kmer type matches the alphabet of the input
Expand Down
2 changes: 1 addition & 1 deletion src/kmer_iteration/SpacedCanonicalKmers.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

"""
An iterator over every valid `T<:Kmer` separated by a `step` parameter, in a given
longer `BioSequence`.
longer `BioSequence`, between a `start` and `stop` position.
!!! note
Typically, the alphabet of the Kmer type matches the alphabet of the input
Expand Down
2 changes: 1 addition & 1 deletion src/kmer_iteration/SpacedKmers.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

"""
An iterator over every valid `T<:Kmer` separated by a `step` parameter, in a given
longer `BioSequence`.
longer `BioSequence`, between a `start` and `stop` position.
!!! note
Typically, the alphabet of the Kmer type matches the alphabet of the input
Expand Down

2 comments on commit f8ea398

@TransGirlCodes
Copy link
Member

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/61979

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>" f8ea398015fa384728c611b900d639ba46f73036
git push origin v0.1.0

Please sign in to comment.