about summary refs log tree commit diff
path: root/src/libsyntax/ext/expand.rs
diff options
context:
space:
mode:
authorCarol Nichols <carol.nichols@gmail.com>2015-05-02 16:25:49 -0400
committerCarol Nichols <carol.nichols@gmail.com>2015-05-03 20:16:02 -0400
commit7ec81722250efc7798d9163574e01eec5cde85ca (patch)
treed7fa4379f64c945caeb778f9964e5705896b3b95 /src/libsyntax/ext/expand.rs
parent796be61e9099a440c90f35636ec6a41f89f3639f (diff)
downloadrust-7ec81722250efc7798d9163574e01eec5cde85ca.tar.gz
rust-7ec81722250efc7798d9163574e01eec5cde85ca.zip
Update old uses of ~ in comments and debugging statements
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 4ea2d4e5c68..b471e06492d 100644
--- a/src/libsyntax/ext/expand.rs
+++ b/src/libsyntax/ext/expand.rs
@@ -1691,7 +1691,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.
     //