update comment

This commit is contained in:
yggverse 2025-07-07 02:46:49 +03:00
parent b939f3db65
commit 203c3041d2

View file

@ -12,9 +12,9 @@ pub struct Value {
pub struct Index {
index: HashMap<String, Value>,
/// Track index changes to prevent extra disk write operations (safe SSD life)
/// * useful in the static RSS feed generation case, if enabled.
/// * useful in the static RSS feed generation case, if enabled
is_changed: bool,
/// Store the index value in memory only when it is in use by the argument options.
/// Store the index value in memory only when it is in use by the init options
has_name: bool,
}