commit | 7ed6d28a8f8af20f2ab91b3145b84584343255d9 | [log] [tgz] |
---|---|---|
author | Alex Crichton <alex@alexcrichton.com> | Fri May 26 13:42:50 2017 -0700 |
committer | Alex Crichton <alex@alexcrichton.com> | Fri May 26 13:42:50 2017 -0700 |
tree | 1e603b9ae29c9ac7dee77aa5bd21486051f33804 | |
parent | 3131662d2339bb3b7d412356a275a863357c4658 [diff] |
Fix raw byte strings
diff --git a/src/stable.rs b/src/stable.rs index 339797e..edf8018 100644 --- a/src/stable.rs +++ b/src/stable.rs
@@ -268,7 +268,7 @@ } pub fn raw_byte_string(s: &str, pounds: usize) -> Literal { - let mut ret = format!("rb"); + let mut ret = format!("br"); ret.extend((0..pounds).map(|_| "#")); ret.push('"'); ret.push_str(s);