From 3730676e77e249a9f34cd6025e7cb1b47e7e57b6 Mon Sep 17 00:00:00 2001 From: David Parsons <david.parsons@inria.fr> Date: Tue, 12 Dec 2023 16:23:59 +0100 Subject: [PATCH] fix misleading comment --- src/libaevol/7/Dna_7.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libaevol/7/Dna_7.cpp b/src/libaevol/7/Dna_7.cpp index 7f8c53629..5a61c005a 100644 --- a/src/libaevol/7/Dna_7.cpp +++ b/src/libaevol/7/Dna_7.cpp @@ -1090,7 +1090,7 @@ std::string Dna_7::subseq(size_type first, size_type count, Strand strand) const } else { return std::string(&(data_[first])) + std::string(data_, count - (length_ - first)); } - } else { // spans_OriC + } else { // Strand::LAGGING auto last = Utils::mod(first + 1 - count, length_); bool spans_OriC = last >= first; -- GitLab