We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cec3ff6 commit acfd743Copy full SHA for acfd743
src/additional_types.rs
@@ -89,7 +89,7 @@ impl<'a> FromSql<'a> for RustLine {
89
let second_coord = coord!(x: x2, y: y2);
90
91
let new_line = Line::new(first_coord, second_coord);
92
- return Ok(RustLine::new(new_line));
+ return Ok(RustLine::new(new_line));
93
}
94
95
fn accepts(_ty: &Type) -> bool {
@@ -215,7 +215,7 @@ impl<'a> FromSql<'a> for Circle {
215
let r = buf.read_f64::<BigEndian>()?;
216
217
let new_circle = Circle::new(x, y, r);
218
- return Ok(new_circle);
+ return Ok(new_circle);
219
220
221
0 commit comments