From 600fcde1524fee1a756326a9a6bc150e2f1bf47f Mon Sep 17 00:00:00 2001 From: Shay Patel Date: Thu, 14 Aug 2025 23:19:37 +0100 Subject: [PATCH] fix spelling error --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 4b3691b..a6300e9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -172,7 +172,7 @@ fn market_sell(ob: &mut Orderbook, quantity: i32) { } fn limit_buy(ob: &mut Orderbook, quantity: i32, price: i32) { - println!("Perofrming LIMIT BUY: {} @ ${}", quantity, price); + println!("Performing LIMIT BUY: {} @ ${}", quantity, price); println!(); let mut left_to_buy: i32 = quantity; let mut total_value: i32 = 0;