summaryrefslogtreecommitdiff
path: root/rust/src/low_level_il
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-10-02 16:55:01 -0400
committerMason Reed <mason@vector35.com>2025-10-02 16:55:01 -0400
commit416332cc9142ee3f7f6f1b845a45a5657f8333a5 (patch)
tree4fdd6bc4222fe981c590e16169d489c6cc22e1c2 /rust/src/low_level_il
parent20eba1282ff32bb77880a903323cf157b86fea8c (diff)
[Rust] Fix misc typo
Diffstat (limited to 'rust/src/low_level_il')
-rw-r--r--rust/src/low_level_il/operation.rs2
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);