diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-02-07 22:54:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-07 22:54:27 -0500 |
| commit | 4c5b868cc3c41740f55b96dc91d1d7e10ec080ba (patch) | |
| tree | 565bc8b3dc27af49256c7490c8ab3e9744b3c93d | |
| parent | d1f8c448ff9c7b72aba229d729e3309dbfea6dd4 (diff) | |
| parent | 380ba6dbad874d78fd9e48ebeacb3161ee7fe7af (diff) | |
| download | rust-4c5b868cc3c41740f55b96dc91d1d7e10ec080ba.tar.gz rust-4c5b868cc3c41740f55b96dc91d1d7e10ec080ba.zip | |
Rollup merge of #39482 - king6cong:master, r=frewsxcv
doc comment rewording
| -rw-r--r-- | src/librustc/mir/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/mir/mod.rs b/src/librustc/mir/mod.rs index 6e9091cf317..cbb7b2710f5 100644 --- a/src/librustc/mir/mod.rs +++ b/src/librustc/mir/mod.rs @@ -63,7 +63,7 @@ macro_rules! newtype_index { } /// Lowered representation of a single function. -// Do not implement clone for Mir, its easy to do so accidently and its kind of expensive. +// Do not implement clone for Mir, which can be accidently done and kind of expensive. #[derive(RustcEncodable, RustcDecodable, Debug)] pub struct Mir<'tcx> { /// List of basic blocks. References to basic block use a newtyped index type `BasicBlock` |
