Skip to content

Commit

Permalink
Fix typo (#6822)
Browse files Browse the repository at this point in the history
  • Loading branch information
abrown authored Aug 8, 2023
1 parent 2764edc commit bf51c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/wiggle/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ impl<'a, T> std::ops::Deref for GuestSlice<'a, T> {

fn deref(&self) -> &Self::Target {
// SAFETY: The presence of `GuestSlice` indicates that this is an
// unshared memory meaning concurrent acceses will not happen.
// unshared memory meaning concurrent accesses will not happen.
// Furthermore the validity of the slice has already been established
// and a runtime borrow has been recorded to prevent conflicting views.
// This all adds up to the ability to return a safe slice from this
Expand Down

0 comments on commit bf51c6a

Please sign in to comment.