diff options
Diffstat (limited to 'rust/src')
| -rw-r--r-- | rust/src/low_level_il/operation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
