From 77d7e44573c8208e7b629c3d78a81cfae146732f Mon Sep 17 00:00:00 2001 From: "Celina G. Val" <celinval@amazon.com> Date: Wed, 6 Dec 2023 17:48:38 -0800 Subject: [PATCH] Update compiler/stable_mir/src/mir/body.rs Co-authored-by: Michael Goulet <michael@errs.io> --- compiler/stable_mir/src/mir/body.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/stable_mir/src/mir/body.rs b/compiler/stable_mir/src/mir/body.rs index cbd9de33b6e..abc9769ea9d 100644 --- a/compiler/stable_mir/src/mir/body.rs +++ b/compiler/stable_mir/src/mir/body.rs @@ -813,7 +813,7 @@ impl BorrowKind { match self { BorrowKind::Mut { .. } => Mutability::Mut, BorrowKind::Shared => Mutability::Not, - // There's no type corresponding to a shallow borrow, so use `&` as an approximation. + // FIXME: There's no type corresponding to a shallow borrow, so use `&` as an approximation. BorrowKind::Fake => Mutability::Not, } }