Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler authored May 16, 2022
1 parent 6accbea commit 34d4eb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/seqan3/search/views/kmer_hash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ namespace seqan3::views
*
* See the \link views views submodule documentation \endlink for detailed descriptions of the view properties.
*
* \attention The Shape is defined is from right to left. The mask 0b1101 applied to ACGT will return
* \attention The Shape is defined from right to left. The mask 0b1101 applied to ACGT will return
* the sequence AGT.
*
* ### Example
Expand Down
2 changes: 1 addition & 1 deletion test/snippet/search/views/kmer_hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ int main()

seqan3::debug_stream << (text | seqan3::views::kmer_hash(0b101_shape)) << '\n'; // [2,7,8,14,1]

// Note: the Shape is defined is from right to left. The mask 0b1101 applied to ACGT will give
// Note: the Shape is defined from right to left. The mask 0b1101 applied to ACGT will yield
// the same result as mask 0b111 applied to AGT.
{
auto text1 = "ACGT"_dna4;
Expand Down

0 comments on commit 34d4eb6

Please sign in to comment.