Skip to content

Commit acfd743

Browse files
author
AGAEV Denis E
committed
Added fixes
1 parent cec3ff6 commit acfd743

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/additional_types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ impl<'a> FromSql<'a> for RustLine {
8989
let second_coord = coord!(x: x2, y: y2);
9090

9191
let new_line = Line::new(first_coord, second_coord);
92-
return Ok(RustLine::new(new_line));
92+
return Ok(RustLine::new(new_line));
9393
}
9494

9595
fn accepts(_ty: &Type) -> bool {
@@ -215,7 +215,7 @@ impl<'a> FromSql<'a> for Circle {
215215
let r = buf.read_f64::<BigEndian>()?;
216216

217217
let new_circle = Circle::new(x, y, r);
218-
return Ok(new_circle);
218+
return Ok(new_circle);
219219
}
220220

221221
fn accepts(_ty: &Type) -> bool {

0 commit comments

Comments
 (0)