diff options
| author | bors <bors@rust-lang.org> | 2015-03-08 21:51:59 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-03-08 21:51:59 +0000 |
| commit | d71239f628f0338d042a7f2cd6f5909025cb0509 (patch) | |
| tree | 14f614e6b52dc7ad80824fa1ec691b007b0bd439 /src/libsyntax | |
| parent | b775541aafb5dcb12f33c6ad4e275d79e54b6987 (diff) | |
| parent | 45c397d738ac9cbf3d0ea2233142023ca148c893 (diff) | |
| download | rust-d71239f628f0338d042a7f2cd6f5909025cb0509.tar.gz rust-d71239f628f0338d042a7f2cd6f5909025cb0509.zip | |
Auto merge of #23179 - steveklabnik:mini_rollup, r=steveklabnik
I had to fix up some PRs: * https://github.com/rust-lang/rust/pull/22976 * https://github.com/rust-lang/rust/pull/22945 * https://github.com/rust-lang/rust/pull/22845
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 b41eb05ded6..550ce3bb8c8 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1264,7 +1264,7 @@ pub struct BareFnTy { /// The different kinds of types recognized by the compiler pub enum Ty_ { TyVec(P<Ty>), - /// A fixed length array (`[T, ..n]`) + /// A fixed length array (`[T; n]`) TyFixedLengthVec(P<Ty>, P<Expr>), /// A raw pointer (`*const T` or `*mut T`) TyPtr(MutTy), |
