query-threads/results: cosmetics

This commit is contained in:
Dirk-Jan C. Binnema
2022-06-09 00:38:34 +03:00
parent 49b97e1b6b
commit d38d32c404
2 changed files with 8 additions and 7 deletions

View File

@ -267,18 +267,19 @@ public:
}
/**
* Get the date for the document (message) the iterator is pointing at.
* pointing at, or Nothing.
* Get the a sortable date str for the document (message) the iterator
* is pointing at. pointing at, or Nothing. This (encoded) string
* has the same sort-order as the corresponding date.
*
* @return a filesystem path
*/
Option<std::string> date() const noexcept {
Option<std::string> date_str() const noexcept {
return opt_string(Field::Id::Date);
}
/**
* Get the file-system path for the document (message) this iterator is
* pointing at.
* Get the subject for the document (message) this iterator is pointing
* at.
*
* @return the subject
*/