From 34d4eb6d0520395bdaab77decb58a755e470108f Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Mon, 16 May 2022 11:41:55 +0200 Subject: [PATCH] Apply suggestions from code review --- include/seqan3/search/views/kmer_hash.hpp | 2 +- test/snippet/search/views/kmer_hash.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/seqan3/search/views/kmer_hash.hpp b/include/seqan3/search/views/kmer_hash.hpp index f47bcc0648..09ae64311b 100644 --- a/include/seqan3/search/views/kmer_hash.hpp +++ b/include/seqan3/search/views/kmer_hash.hpp @@ -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 diff --git a/test/snippet/search/views/kmer_hash.cpp b/test/snippet/search/views/kmer_hash.cpp index d08a795ccb..749d9c742a 100644 --- a/test/snippet/search/views/kmer_hash.cpp +++ b/test/snippet/search/views/kmer_hash.cpp @@ -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;