about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix S Klock II <pnkfelix@pnkfx.org>2019-10-02 22:04:30 +0200
committerGitHub <noreply@github.com>2019-10-02 22:04:30 +0200
commit3adcc3ed222bdc6fc669281c42ef933aa3f6116b (patch)
treef799422ec8b87df6f9b85bde551061e87830f3e8
parenta3719728325e7a6fa511aee5c8191c248262a9af (diff)
downloadrust-3adcc3ed222bdc6fc669281c42ef933aa3f6116b.tar.gz
rust-3adcc3ed222bdc6fc669281c42ef933aa3f6116b.zip
fix typo
-rw-r--r--src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs b/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs
index 4f7e8e3072f..18e441625ab 100644
--- a/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs
+++ b/src/test/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs
@@ -1,7 +1,7 @@
 // run-pass
 
 // rust-lang/rust#64655: with panic=unwind, a panic from a subroutine
-// should still run desstructors as it unwindws the stack. However,
+// should still run desstructors as it unwinds the stack. However,
 // bugs with how the nounwind LLVM attribute was applied led to this
 // simple case being mishandled *if* you had optimization *and* fat
 // LTO turned on.