summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-11-26 10:21:45 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-11-26 16:50:13 -0800
commit60541cdc1ec334b278740fd6d59b9d08929e6d0d (patch)
tree807a52a2c2ce80e7b77753367029cd9f5eca8658 /src/libsyntax
parent62137b6d7976635c0c8271f14c5f09fe519d8ba9 (diff)
downloadrust-60541cdc1ec334b278740fd6d59b9d08929e6d0d.tar.gz
rust-60541cdc1ec334b278740fd6d59b9d08929e6d0d.zip
Test fixes and rebase conflicts
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/quote.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libsyntax/ext/quote.rs b/src/libsyntax/ext/quote.rs
index e703ac21f26..3fca110a881 100644
--- a/src/libsyntax/ext/quote.rs
+++ b/src/libsyntax/ext/quote.rs
@@ -17,12 +17,12 @@ use parse::token::*;
 use parse::token;
 use ptr::P;
 
-//!  Quasiquoting works via token trees.
-//!
-//!  This is registered as a set of expression syntax extension called quote!
-//!  that lifts its argument token-tree to an AST representing the
-//!  construction of the same token tree, with token::SubstNt interpreted
-//!  as antiquotes (splices).
+///  Quasiquoting works via token trees.
+///
+///  This is registered as a set of expression syntax extension called quote!
+///  that lifts its argument token-tree to an AST representing the
+///  construction of the same token tree, with token::SubstNt interpreted
+///  as antiquotes (splices).
 
 pub mod rt {
     use ast;