about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-09 00:02:37 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-09 00:02:37 +0530
commit0e0bb8a128baee4ec074b6d82bdd73b48a4b8283 (patch)
tree14f614e6b52dc7ad80824fa1ec691b007b0bd439 /src/libsyntax
parent509c6fc9c172fefaeeabb815a4b8feac6e0d075d (diff)
parent45c397d738ac9cbf3d0ea2233142023ca148c893 (diff)
downloadrust-0e0bb8a128baee4ec074b6d82bdd73b48a4b8283.tar.gz
rust-0e0bb8a128baee4ec074b6d82bdd73b48a4b8283.zip
Rollup 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.rs2
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),