diff options
| author | Dylan MacKenzie <ecstaticmorse@gmail.com> | 2019-09-18 07:32:57 -0700 |
|---|---|---|
| committer | Dylan MacKenzie <ecstaticmorse@gmail.com> | 2019-09-18 07:32:57 -0700 |
| commit | 19bf0f4c905aa17fb9f975432c1d32e210e2deb8 (patch) | |
| tree | 73523a3a59d65fe607694ce220dce6aac097c337 | |
| parent | a526e4faa6b69f1b6ea60e5e692b679e24bb1994 (diff) | |
| download | rust-19bf0f4c905aa17fb9f975432c1d32e210e2deb8.tar.gz rust-19bf0f4c905aa17fb9f975432c1d32e210e2deb8.zip | |
Fix typo
| -rw-r--r-- | src/librustc_mir/dataflow/generic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/dataflow/generic.rs b/src/librustc_mir/dataflow/generic.rs index 6ee81de19f1..901467d52dc 100644 --- a/src/librustc_mir/dataflow/generic.rs +++ b/src/librustc_mir/dataflow/generic.rs @@ -49,7 +49,7 @@ pub trait Analysis<'tcx>: BottomValue { /// The size of each bitvector allocated for each block. fn bits_per_block(&self, body: &mir::Body<'tcx>) -> usize; - /// Mutates the entry set of the `START_BLOCK` to containthe initial state for dataflow + /// Mutates the entry set of the `START_BLOCK` to contain the initial state for dataflow /// analysis. fn initialize_start_block(&self, body: &mir::Body<'tcx>, state: &mut BitSet<Self::Idx>); |
