about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSimonas Kazlauskas <git@kazlauskas.me>2020-08-22 00:11:52 +0300
committerSimonas Kazlauskas <git@kazlauskas.me>2020-08-22 00:11:52 +0300
commit215822a32ee4ff3fc8b8cade9f6e31debe57df18 (patch)
treed41690333cebc108279fd744790011784b0ffa18 /src
parentde521cbb303c08febd9fa3755caccd4f3e491ea3 (diff)
downloadrust-215822a32ee4ff3fc8b8cade9f6e31debe57df18.tar.gz
rust-215822a32ee4ff3fc8b8cade9f6e31debe57df18.zip
MIR call terminator represents diverging calls too
Diffstat (limited to 'src')
-rw-r--r--src/librustc_middle/mir/terminator/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_middle/mir/terminator/mod.rs b/src/librustc_middle/mir/terminator/mod.rs
index e8fe3a97a10..fcfd648c2b7 100644
--- a/src/librustc_middle/mir/terminator/mod.rs
+++ b/src/librustc_middle/mir/terminator/mod.rs
@@ -103,7 +103,7 @@ pub enum TerminatorKind<'tcx> {
         unwind: Option<BasicBlock>,
     },
 
-    /// Block ends with a call of a converging function.
+    /// Block ends with a call of a function.
     Call {
         /// The function that’s being called.
         func: Operand<'tcx>,