about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2016-01-09 10:31:50 -0800
committerErick Tryzelaar <erick.tryzelaar@gmail.com>2016-01-09 10:31:50 -0800
commitcd1f0b75f330cde0afa4e6ce07151f1d077ed814 (patch)
tree28e00b2a1fc0307a1e57c1f3c8da8645c8669159 /src
parentd70ab2bdf16c22b9f3ff0230089b44855e3f1593 (diff)
downloadrust-cd1f0b75f330cde0afa4e6ce07151f1d077ed814.tar.gz
rust-cd1f0b75f330cde0afa4e6ce07151f1d077ed814.zip
Fix a typo in rustc_mir::build::scope's documentation
Diffstat (limited to 'src')
-rw-r--r--src/librustc_mir/build/scope.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/build/scope.rs b/src/librustc_mir/build/scope.rs
index e912e933bd8..90d6a90682f 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