diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-11-03 15:29:55 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-11-03 15:56:00 -0800 |
| commit | a779e89a008b78616ae8edbde9e75c9265af29f7 (patch) | |
| tree | aea9b7c564332500581d80c6557a486db0446504 /src/libsyntax | |
| parent | c1b19513ee75a36e3bee604531028af394673c1c (diff) | |
| parent | 9bc4da3493db7de6ac73038e9b60309295b19cbe (diff) | |
| download | rust-a779e89a008b78616ae8edbde9e75c9265af29f7.tar.gz rust-a779e89a008b78616ae8edbde9e75c9265af29f7.zip | |
rollup merge of #18568 : gamazeps/issue18551
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 7fb93698219..18fc970c218 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -385,7 +385,7 @@ pub enum Pat_ { PatLit(P<Expr>), PatRange(P<Expr>, P<Expr>), /// [a, b, ..i, y, z] is represented as: - /// PatVec(~[a, b], Some(i), ~[y, z]) + /// PatVec(box [a, b], Some(i), box [y, z]) PatVec(Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>), PatMac(Mac), } |
