From 37789c4a1d6e46af2ef619f5640c05764b875dbb Mon Sep 17 00:00:00 2001 From: Mazdak Farrokhzad Date: Tue, 19 Mar 2019 06:10:59 +0100 Subject: [PATCH] Update src/librustc/hir/mod.rs Co-Authored-By: llogiq --- src/librustc/hir/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/hir/mod.rs b/src/librustc/hir/mod.rs index 8941158e561d1..24c145b3811e3 100644 --- a/src/librustc/hir/mod.rs +++ b/src/librustc/hir/mod.rs @@ -1233,7 +1233,7 @@ pub struct Arm { pub pats: HirVec>, /// Optional guard clause. pub guard: Option, - /// The action to take if this arm matches. + /// The expression the arm evaluates to if this arm matches. pub body: P, }