From 08102293274e6fd41c9320ae6ea399bbba006386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anselm=20Sch=C3=BCler?= Date: Thu, 5 Sep 2024 20:28:48 +0200 Subject: [PATCH] Fix grammar in 1.81.0 release --- posts/2024-09-05-Rust-1.81.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2024-09-05-Rust-1.81.0.md b/posts/2024-09-05-Rust-1.81.0.md index 5aa5d7944..6f51220c9 100644 --- a/posts/2024-09-05-Rust-1.81.0.md +++ b/posts/2024-09-05-Rust-1.81.0.md @@ -45,7 +45,7 @@ requirements documented in [PartialOrd] and [Ord]. ### `#[expect(lint)]` 1.81 stabilizes a new lint level, `expect`, which allows explicitly noting that -a particular lint *should* occur, and warning if it doesn't. The intended use +a particular lint *should* occur, and warn if it doesn't. The intended use case for this is temporarily silencing a lint, whether due to lint implementation bugs or ongoing refactoring, while wanting to know when the lint is no longer required.