Skip to content

Commit 416332c

Browse files
committed
[Rust] Fix misc typo
1 parent 20eba12 commit 416332c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/src/low_level_il/operation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ where
9898
/// `idx` must be less than 4. This is to protect against an out of bounds access.
9999
///
100100
/// # Safety
101-
/// Even if `idx` is valid, it may index to an unitialized or unused value. Make sure you index into an operand that
101+
/// Even if `idx` is valid, it may index to an uninitialized or unused value. Make sure you index into an operand that
102102
/// you know should be initialized properly.
103103
pub unsafe fn get_operand(&self, idx: usize) -> u64 {
104104
assert!(idx < 4);

0 commit comments

Comments
 (0)