pi-observational-memory 2.1.1 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-observational-memory",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Observational memory extension for pi — cache-friendly tiered compaction with observations and reflections.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -49,7 +49,7 @@ export function registerCompactionHook(pi: ExtensionAPI, runtime: Runtime): void
49
49
  if (runtime.observerPromise) {
50
50
  try { await runtime.observerPromise; } catch { /* already notified via launchObserverTask */ }
51
51
  // In-flight observer may have appended a new observation entry during the await;
52
- // refresh from sessionManager so gap computation and coverage collection see it.
52
+ // refresh from sessionManager so gap computation and coverage collection see it
53
53
  entries = ctx.sessionManager.getBranch() as typeof entries;
54
54
  }
55
55