From da005a1c4489dc3f765dbbab7e72c591e5a953ad Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Wed, 12 Aug 2026 15:14:04 -0700 Subject: [PATCH] tests/ui/union/union-nodrop.rs: fix typo "expressios" --- tests/ui/union/union-nodrop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui/union/union-nodrop.rs b/tests/ui/union/union-nodrop.rs index cfba22c5e3088..401ed42f73bff 100644 --- a/tests/ui/union/union-nodrop.rs +++ b/tests/ui/union/union-nodrop.rs @@ -11,7 +11,7 @@ impl Drop for NeedDrop { fn drop(&mut self) {} } -// Constant expressios allow `NoDrop` to go out of scope, +// Constant expressions allow `NoDrop` to go out of scope, // unlike a value of the interior type implementing `Drop`. static X: () = (NoDrop { inner: ManuallyDrop::new(NeedDrop) }, ()).1;