update: 旧用語コメントの掃除と KNOWN_ISSUES 追記

- 残存していた head_hash / SessionHead 言及コメントを 3 箇所更新
- FsStore::read_entry_count の O(n) 計測コストを KNOWN_ISSUES に登録
This commit is contained in:
2026-05-20 04:53:33 +09:00
parent f41c60c3ae
commit 55c5ac4942
4 changed files with 12 additions and 11 deletions
+3 -3
View File
@@ -18,12 +18,12 @@
//! ```ignore
//! use session_store::{create_session, restore, save_delta, FsStore, SessionStartState};
//!
//! let store = FsStore::new("./sessions").await?;
//! let (session_id, head_hash) = create_session(&store, SessionStartState {
//! let store = FsStore::new("./sessions")?;
//! let session_id = create_session(&store, SessionStartState {
//! system_prompt: None,
//! config: &config,
//! history: &[],
//! }).await?;
//! })?;
//! ```
pub mod event_trace;