From 416332cc9142ee3f7f6f1b845a45a5657f8333a5 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 2 Oct 2025 16:55:01 -0400 Subject: [Rust] Fix misc typo --- rust/src/low_level_il/operation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src') diff --git a/rust/src/low_level_il/operation.rs b/rust/src/low_level_il/operation.rs index 2ddb84f2..419a0dcd 100644 --- a/rust/src/low_level_il/operation.rs +++ b/rust/src/low_level_il/operation.rs @@ -98,7 +98,7 @@ where /// `idx` must be less than 4. This is to protect against an out of bounds access. /// /// # Safety - /// Even if `idx` is valid, it may index to an unitialized or unused value. Make sure you index into an operand that + /// Even if `idx` is valid, it may index to an uninitialized or unused value. Make sure you index into an operand that /// you know should be initialized properly. pub unsafe fn get_operand(&self, idx: usize) -> u64 { assert!(idx < 4); -- cgit v1.3.1