Closed heyterrance closed 3 months ago
When self > other, self.abs() is returned instead of self - other
self > other
self.abs()
self - other
https://github.com/paupino/rust-decimal/blob/6f8b0ae8570b33727a779da8bb81983c4bb58d68/src/decimal.rs#L1895-L1901
This is a good catch - fortunately an easy fix will whip up a quick PR.
When
self > other
,self.abs()
is returned instead ofself - other
https://github.com/paupino/rust-decimal/blob/6f8b0ae8570b33727a779da8bb81983c4bb58d68/src/decimal.rs#L1895-L1901