]> git.lizzy.rs Git - rust.git/blobdiff - src/libsyntax/ext/expand.rs
Merge branch 'master' into mulit-decor
[rust.git] / src / libsyntax / ext / expand.rs
index 476ab0fbf1136cf297864c5105d4272dc541ad7a..d71557bd7372d6f37a608e2319cc4f664254a53a 100644 (file)
@@ -1719,7 +1719,7 @@ fn crate_bindings(the_crate : &ast::Crate) -> Vec<ast::Ident> {
     // induced by visit.  Each of these arrays contains a list of indexes,
     // interpreted as the varrefs in the varref traversal that this binding
     // should match.  So, for instance, in a program with two bindings and
-    // three varrefs, the array ~[~[1,2],~[0]] would indicate that the first
+    // three varrefs, the array [[1, 2], [0]] would indicate that the first
     // binding should match the second two varrefs, and the second binding
     // should match the first varref.
     //