Skip to content

Commit 02d5b36

Browse files
committed
Fix clippy warnings
1 parent cd93312 commit 02d5b36

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

canyon_crud/src/query_elements/query_builder.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ where
233233
self.query.params.push(qp)
234234
});
235235

236-
self.query.sql.push_str(")");
236+
self.query.sql.push(')')
237237
}
238238

239239
fn or_values_in<Z, Q>(&mut self, r#or: Z, values: &'a [Q])
@@ -264,7 +264,7 @@ where
264264
self.query.params.push(qp)
265265
});
266266

267-
self.query.sql.push_str(")");
267+
self.query.sql.push(')')
268268
}
269269

270270
#[inline]

0 commit comments

Comments
 (0)