From cd1f0b75f330cde0afa4e6ce07151f1d077ed814 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Sat, 9 Jan 2016 10:31:50 -0800 Subject: [PATCH] Fix a typo in rustc_mir::build::scope's documentation --- src/librustc_mir/build/scope.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_mir/build/scope.rs b/src/librustc_mir/build/scope.rs index e912e933bd81f..90d6a90682f6e 100644 --- a/src/librustc_mir/build/scope.rs +++ b/src/librustc_mir/build/scope.rs @@ -34,7 +34,7 @@ you but duty compels me to mention. In the course of translating matches, it sometimes happen that certain code (namely guards) gets executed multiple times. This means that the scope lexical scope may in fact correspond to multiple, disjoint SEME regions. So in fact our -mapping os from one scope to a vector of SEME regions. +mapping is from one scope to a vector of SEME regions. ### Drops