File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -919,7 +919,7 @@ pub enum Expr_ {
919
919
/// Inline assembly (from `asm!`), with its outputs and inputs.
920
920
ExprInlineAsm ( InlineAsm , Vec < P < Expr > > , Vec < P < Expr > > ) ,
921
921
922
- /// A struct or enum variant literal expression.
922
+ /// A struct or struct-like variant literal expression.
923
923
///
924
924
/// For example, `Foo {x: 1, y: 2}`, or
925
925
/// `Foo {x: 1, .. base}`, where `base` is the `Option<Expr>`.
@@ -955,12 +955,12 @@ pub struct QSelf {
955
955
pub enum MatchSource {
956
956
/// A `match _ { .. }`
957
957
Normal ,
958
- /// An `if let _ = _ { .. }` (optionally with `else { .. }`
958
+ /// An `if let _ = _ { .. }` (optionally with `else { .. }`)
959
959
IfLetDesugar {
960
960
contains_else_clause : bool ,
961
961
} ,
962
962
/// A `while let _ = _ { .. }` (which was desugared to a
963
- /// `loop { match _ { .. } }`
963
+ /// `loop { match _ { .. } }`)
964
964
WhileLetDesugar ,
965
965
/// A desugared `for _ in _ { .. }` loop
966
966
ForLoopDesugar ,
You can’t perform that action at this time.
0 commit comments