@@ -5035,11 +5035,11 @@ sticky_tracking = "auto""#;
50355035 // Task as it looks after the user assigned priority C in todo.txt.
50365036 // The To-do push_filter requires @joint AND (@today OR due=..+1d).
50375037 // This task has @joint but no @today and no due → off filter.
5038- let task = task_from_line ( & format ! ( "(C) Folding table @joint eid:{eid}" ) ) ;
5038+ let task = task_from_line ( & format ! ( "(C) Chairs @ Sarah @joint eid:{eid}" ) ) ;
50395039 let current_hash = task_line_hash ( & task) ;
50405040
50415041 // State: was pulled from To-do with no priority (hash differs → user edited)
5042- let mut item = synced_item_with_hash ( eid, "Folding table " , current_hash + 1 , false ) ;
5042+ let mut item = synced_item_with_hash ( eid, "Chairs @ Sarah " , current_hash + 1 , false ) ;
50435043 item. fields . list = "To-do" . to_string ( ) ;
50445044
50455045 let state = state_with_items ( vec ! [ item] ) ;
@@ -5065,10 +5065,10 @@ sticky_tracking = "auto""#;
50655065 use super :: compute_release_set;
50665066
50675067 let eid = "eid-joint-always" ;
5068- let task = task_from_line ( & format ! ( "(C) Extension cord @joint eid:{eid}" ) ) ;
5068+ let task = task_from_line ( & format ! ( "(C) Tupperware lid @joint eid:{eid}" ) ) ;
50695069 let current_hash = task_line_hash ( & task) ;
50705070
5071- let mut item = synced_item_with_hash ( eid, "Extension cord " , current_hash + 1 , false ) ;
5071+ let mut item = synced_item_with_hash ( eid, "Tupperware lid " , current_hash + 1 , false ) ;
50725072 item. fields . list = "To-do" . to_string ( ) ;
50735073
50745074 let state = state_with_items ( vec ! [ item] ) ;
@@ -5137,12 +5137,12 @@ sticky_tracking = "auto""#;
51375137 let eid = "eid-real-workflow" ;
51385138
51395139 // After triage: user added priority C, task has @joint but no @today, no near due.
5140- let task = task_from_line ( & format ! ( "(C) Extension cord @joint eid:{eid} #buy" ) ) ;
5140+ let task = task_from_line ( & format ! ( "(C) Tupperware lid @joint eid:{eid} #buy" ) ) ;
51415141 let current_hash = task_line_hash ( & task) ;
51425142
51435143 // State: pulled from To-do, no priority (hash differs)
51445144 let mut state_item =
5145- synced_item_with_hash ( eid, "Extension cord #buy" , current_hash + 1 , false ) ;
5145+ synced_item_with_hash ( eid, "Tupperware lid #buy" , current_hash + 1 , false ) ;
51465146 state_item. fields . list = "To-do" . to_string ( ) ;
51475147 let state = state_with_items ( vec ! [ state_item] ) ;
51485148
@@ -5162,7 +5162,7 @@ sticky_tracking = "auto""#;
51625162 ) ;
51635163
51645164 let reminder = ReminderBuilder :: new ( eid)
5165- . title ( "Extension cord #buy" )
5165+ . title ( "Tupperware lid #buy" )
51665166 . list ( "To-do" )
51675167 . build ( ) ;
51685168 let actions = compute_sync_actions_ext (
0 commit comments