From 2a69f285e72ba1c48705ae8295b547cc74fddb8f Mon Sep 17 00:00:00 2001 From: tlongwell-block <109685178+tlongwell-block@users.noreply.github.com> Date: Wed, 20 May 2026 10:10:39 -0400 Subject: [PATCH] cli(mem): clarify 'no memories' wording to note core is excluded (#622) Signed-off-by: Tyler Longwell <109685178+tlongwell-block@users.noreply.github.com> Co-authored-by: Dawn --- crates/sprout-cli/src/commands/mem.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/sprout-cli/src/commands/mem.rs b/crates/sprout-cli/src/commands/mem.rs index 798ce7d07..7fcd46902 100644 --- a/crates/sprout-cli/src/commands/mem.rs +++ b/crates/sprout-cli/src/commands/mem.rs @@ -219,7 +219,7 @@ pub async fn cmd_ls( if json { println!("{}", serde_json::to_string(&listings).unwrap_or_default()); } else if listings.is_empty() { - eprintln!("(no memories)"); + eprintln!("(no memories besides core)"); } else { for l in &listings { println!("{}\t{}\t{}", l.slug, l.created_at, l.event_id);