about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2022-12-21 15:34:21 +0900
committerGitHub <noreply@github.com>2022-12-21 15:34:21 +0900
commit5538c92837ef66369ea80faf0badd1c85f1512c9 (patch)
tree700560dff22b7ab22c604f3c5a741b4e9bcc8a59
parent1d12c3cea30b8ba4a09650a9e9c46fe9fbe25f0b (diff)
downloadrust-5538c92837ef66369ea80faf0badd1c85f1512c9.tar.gz
rust-5538c92837ef66369ea80faf0badd1c85f1512c9.zip
Fix typo in reading_half_a_pointer.rs
gurantee -> guarantee
-rw-r--r--src/tools/miri/tests/fail/reading_half_a_pointer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/tests/fail/reading_half_a_pointer.rs b/src/tools/miri/tests/fail/reading_half_a_pointer.rs
index 2d669132624..7dd98eab785 100644
--- a/src/tools/miri/tests/fail/reading_half_a_pointer.rs
+++ b/src/tools/miri/tests/fail/reading_half_a_pointer.rs
@@ -7,7 +7,7 @@ struct Data {
     ptr: &'static i32,
 }
 
-// But we need to gurantee some alignment
+// But we need to guarantee some alignment
 struct Wrapper {
     align: u64,
     data: Data,