about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2019-09-26 16:24:02 -0700
committerDylan MacKenzie <ecstaticmorse@gmail.com>2019-09-30 11:21:16 -0700
commitf33d94d88f800ef00a13747a3ee9dda77f6f42d1 (patch)
tree60bcc9d6154d9ea66919268b614966eda6a5c0df /src
parent22bc9e1d9ca49ee4f5cd953088ab09c238a6dd26 (diff)
downloadrust-f33d94d88f800ef00a13747a3ee9dda77f6f42d1.tar.gz
rust-f33d94d88f800ef00a13747a3ee9dda77f6f42d1.zip
Fix typo in docs
Diffstat (limited to 'src')
-rw-r--r--src/librustc_mir/dataflow/generic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/dataflow/generic.rs b/src/librustc_mir/dataflow/generic.rs
index 6f598469e9d..18dd8a0ecbd 100644
--- a/src/librustc_mir/dataflow/generic.rs
+++ b/src/librustc_mir/dataflow/generic.rs
@@ -77,7 +77,7 @@ pub trait Analysis<'tcx>: BottomValue {
         location: Location,
     );
 
-    /// Updates the current dataflow state with the effect of evaluating a statement.
+    /// Updates the current dataflow state with the effect of evaluating a terminator.
     ///
     /// Note that the effect of a successful return from a `Call` terminator should **not** be
     /// acounted for in this function. That should go in `apply_call_return_effect`. For example,