From d7b93216cdeb477e1af813f898096af867550338 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Mon, 3 Aug 2015 16:19:21 -0400 Subject: [PATCH] small fix in RELEASES this grammar isn't correct --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 0c49559551172..1dfd2186e1385 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -79,7 +79,7 @@ Libraries are used by code generators to emit implementations of [`Debug`]. * `str` has new [`to_uppercase`][strup] and [`to_lowercase`][strlow] methods that convert case, following Unicode case mapping. -* It is now easier to handle to poisoned locks. The [`PoisonError`] +* It is now easier to handle poisoned locks. The [`PoisonError`] type, returned by failing lock operations, exposes `into_inner`, `get_ref`, and `get_mut`, which all give access to the inner lock guard, and allow the poisoned lock to continue to operate. The