From 39eb75f1c9e11456fa5a268b08cd1be273a99321 Mon Sep 17 00:00:00 2001 From: jpirnay Date: Wed, 25 Feb 2026 21:29:39 +0100 Subject: [PATCH] Nitpick comment --- lib/KOReaderSync/KOReaderDocumentId.h | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/lib/KOReaderSync/KOReaderDocumentId.h b/lib/KOReaderSync/KOReaderDocumentId.h index de487c23..5f226eb5 100644 --- a/lib/KOReaderSync/KOReaderDocumentId.h +++ b/lib/KOReaderSync/KOReaderDocumentId.h @@ -52,13 +52,16 @@ class KOReaderDocumentId { // string on miss/invalidation. // // The fingerprint is derived from the file's modification timestamp. We - // call `FsFile::getModifyDateTime` to retrieve the packed date/time fields - // from the filesystem. These two 16‑bit values are concatenated as - // eight hex digits (YYYYYYTTTT? actually date and time bits) and used as a - // lightweight change signal; any change to the file's mtime will cause the - // fingerprint to differ and the cache to be invalidated. Since the full - // document hash is expensive to compute, using mtime gives us a quick way to - // detect modifications without reading file contents. + // call `FsFile::getModifyDateTime` to retrieve two 16‑bit packed values + // supplied by the filesystem: one for the date and one for the time. These + // are concatenated and represented as eight hexadecimal digits in the form + //