Skip to content

Commit f6c0ce1

Browse files
committed
Cleanup
1 parent 9948bcd commit f6c0ce1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/types.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,15 @@ fn parse_types(ranges: &BTreeMap<u32, u32>) -> BTreeMap<u32, Type> {
119119

120120
fn make_enum(w: &mut BufWriter<File>, types: &BTreeMap<u32, Type>) {
121121
write!(w,
122-
r#"/// A Postgres type.
122+
"/// A Postgres type.
123123
#[derive(PartialEq, Eq, Clone, Debug)]
124124
pub enum Type {{
125-
"#
125+
"
126126
).unwrap();
127127

128128
for type_ in types.values() {
129129
write!(w,
130-
r" /// {}
130+
" /// {}
131131
{},
132132
"
133133
, type_.doc, type_.variant).unwrap();

0 commit comments

Comments
 (0)