about summary refs log tree commit diff
path: root/src/libsyntax/ext/expand.rs
diff options
context:
space:
mode:
authorNick Cameron <ncameron@mozilla.com>2015-05-13 15:09:17 +1200
committerNick Cameron <ncameron@mozilla.com>2015-05-13 15:09:17 +1200
commit103e52b1db92b9ac57dcebf5c5738ad5a45155ad (patch)
treef25dde7fb14152c900f89c7b9c85e63b1439c828 /src/libsyntax/ext/expand.rs
parent5d16772ecb93270ac64b44b429a157f397a3e41d (diff)
parentc2b30b86df6b34ba19e87e63402e43d9e81a64fb (diff)
downloadrust-103e52b1db92b9ac57dcebf5c5738ad5a45155ad.tar.gz
rust-103e52b1db92b9ac57dcebf5c5738ad5a45155ad.zip
Merge branch 'master' into mulit-decor
Diffstat (limited to 'src/libsyntax/ext/expand.rs')
-rw-r--r--src/libsyntax/ext/expand.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs
index 476ab0fbf11..d71557bd737 100644
--- a/src/libsyntax/ext/expand.rs
+++ b/src/libsyntax/ext/expand.rs
@@ -1719,7 +1719,7 @@ mod tests {
     // 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.
     //