From c062afe73ddb8aaab4c475530330404b62e2d58d Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Mon, 4 Nov 2019 13:49:50 -0500 Subject: [PATCH] Make doc comment more accurate --- src/librustc_mir/interpret/machine.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/librustc_mir/interpret/machine.rs b/src/librustc_mir/interpret/machine.rs index bed6c0b67eb..08da5078f43 100644 --- a/src/librustc_mir/interpret/machine.rs +++ b/src/librustc_mir/interpret/machine.rs @@ -24,7 +24,10 @@ pub enum StackPopInfo { /// as the result of panic StartUnwinding, - /// Indicates that we performed a normal return + /// Indicates that no special handling should be + /// done - we'll either return normally or unwind + /// based on the terminator for the function + /// we're leaving. Normal, /// Indicates that we should stop unwinding,