From 1a40cd2fa212ec43d65e56fee5196ca269293471 Mon Sep 17 00:00:00 2001 From: markmmm Date: Sat, 28 Apr 2018 10:53:21 +0800 Subject: [PATCH] Fix small grammatical error in releases.md "is now a invalid" is incorrect - updated to remove the 'a'. --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 752f78689bb67..bb4f3ddace25d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -109,7 +109,7 @@ Compatibility Notes ------------------- - [aliasing a `Fn` trait as `dyn` no longer works.][48481] E.g. the following - syntax is now a invalid. + syntax is now invalid. ``` use std::ops::Fn as dyn; fn g(_: Box) {}