1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-26 07:29:17 +02:00

query: fix some typos

This commit is contained in:
Dirk-Jan C. Binnema 2021-01-25 10:11:46 +02:00
parent 9260e4cbe2
commit cec25d3166

View File

@ -162,15 +162,14 @@ struct MatchDeciderRelated: public MatchDecider {
* - with QueryFlags::SkipDuplicates this will return false for messages * - with QueryFlags::SkipDuplicates this will return false for messages
* whose message-id was seen before. * whose message-id was seen before.
* *
* Even if we do not skip these messages entirely, we remember whether * Even if we do not skip these messages entirely, we remember whether they were
* they were unreadabld/duplicate (in the QueryMatch::Flags), so we can * unreadable/duplicate (in the QueryMatch::Flags), so we can quickly find that info when
* quickly find that info when doing the second 'related' query. * doing the second 'related' query.
* *
* The "leader" query. Matches here get the Leader flag unless their * The "leader" query. Matches here get the Leader flag unless they are duplicates /
* duplicates / unreadable. We check the duplicate/readable status * unreadable. We check the duplicate/readable status regardless of whether
* regardless of whether SkipDuplicates/SkipUnreadable was passed * SkipDuplicates/SkipUnreadable was passed (to gather that information); however those
* (to gather that information); however those flags * flags affect our true/false verdict.
* affect our true/false verdict.
* *
* @param doc xapian document * @param doc xapian document
* *