diff --git a/src/hippocampus/memory.rs b/src/hippocampus/memory.rs index 8254373..b66b1ef 100644 --- a/src/hippocampus/memory.rs +++ b/src/hippocampus/memory.rs @@ -66,10 +66,10 @@ impl MemoryNode { let total = footer.len(); out.push_str("\n\n---\nLinks:"); for (target, strength) in footer.iter().take(15) { - out.push_str(&format!("\n ({:.2}) `poc-memory render {}`", strength, target)); + out.push_str(&format!("\n ({:.2}) {}", strength, target)); } if total > 15 { - out.push_str(&format!("\n ... and {} more (`poc-memory graph link {}`)", + out.push_str(&format!("\n ... and {} more (memory_links key={})", total - 15, self.key)); } }