Update comments

Bennet Bo Fenner created

Change summary

crates/acp_thread/src/diff.rs         | 2 +-
crates/buffer_diff/src/buffer_diff.rs | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)

Detailed changes

crates/acp_thread/src/diff.rs 🔗

@@ -384,7 +384,7 @@ async fn apply_diff_update(
     diff: &WeakEntity<Diff>,
     cx: &mut AsyncApp,
 ) -> Result<()> {
-    // FIXME we can get away without having a whole secondary diff here
+    // todo: we can get away without having a whole secondary diff here
     let (task1, task2) = buffer_diff.update(cx, |diff, cx| {
         let task1 = diff.set_snapshot(update.clone(), text_snapshot, cx);
         let task2 = diff

crates/buffer_diff/src/buffer_diff.rs 🔗

@@ -51,7 +51,6 @@ pub struct BufferDiffUpdate {
 }
 
 impl BufferDiffUpdate {
-    // FIXME thread through diff options to control word diff
     pub fn from_hunks(
         base_text: Arc<str>,
         base_snapshot: &Rope,