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 492cf35 commit c3c591aCopy full SHA for c3c591a
src/coord/numeric.rs
@@ -33,7 +33,7 @@ macro_rules! make_numeric_coord {
33
pub struct $name($type, $type);
34
impl From<Range<$type>> for $name {
35
fn from(range: Range<$type>) -> Self {
36
- return Self(range.start, range.end);
+ return $name(range.start, range.end);
37
}
38
39
impl Ranged for $name {
0 commit comments