From 6941caf1df5e38d47bfec16353c0ef6eeceb9aa8 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 22 Nov 2019 18:12:10 +0100 Subject: [PATCH] typo --- .../compile-fail/stacked_borrows/deallocate_against_barrier2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/compile-fail/stacked_borrows/deallocate_against_barrier2.rs b/tests/compile-fail/stacked_borrows/deallocate_against_barrier2.rs index db4d2d998dbd..9c0c59d364f2 100644 --- a/tests/compile-fail/stacked_borrows/deallocate_against_barrier2.rs +++ b/tests/compile-fail/stacked_borrows/deallocate_against_barrier2.rs @@ -2,7 +2,7 @@ use std::cell::Cell; -// Check that even `&Cell` are dereferencable. +// Check that even `&Cell` are dereferenceable. // Also see . fn inner(x: &Cell, f: fn(&Cell)) { // `f` may mutate, but it may not deallocate!