From 7299b6c1745fbe0eb8ec07fcac36ebbfa73d88eb Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Tue, 13 May 2025 07:24:31 -0400 Subject: [PATCH] Fix a small typo affecting `Expression::GetRef` From what I can tell, this change affects no tests. Signed-off-by: Samuel Moelius --- src/codegen/cfg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/cfg.rs b/src/codegen/cfg.rs index 5a635b250..e21ae5974 100644 --- a/src/codegen/cfg.rs +++ b/src/codegen/cfg.rs @@ -983,7 +983,7 @@ impl ControlFlowGraph { ) } Expression::GetRef { expr, .. } => { - format!("(deref {}", self.expr_to_string(contract, ns, expr)) + format!("(deref {})", self.expr_to_string(contract, ns, expr)) } Expression::VectorData { pointer } => { format!("pointer pos {}", self.expr_to_string(contract, ns, pointer))