about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-08-22 02:14:59 +0200
committerGitHub <noreply@github.com>2020-08-22 02:14:59 +0200
commit2ab6fef19fb78dddc16fb03715e637dfd6f8663a (patch)
tree7e76b58c1e7a5967a933d72b688f8e9f0e506dfa /src
parent13dfa9c874b9dd805146f0702ddbdcd3f0bb2964 (diff)
parent215822a32ee4ff3fc8b8cade9f6e31debe57df18 (diff)
downloadrust-2ab6fef19fb78dddc16fb03715e637dfd6f8663a.tar.gz
rust-2ab6fef19fb78dddc16fb03715e637dfd6f8663a.zip
Rollup merge of #75788 - nagisa:mir-call-doccomment, r=wesleywiser
MIR call terminator represents diverging calls too

@bors rollup=always
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>,