Browse Source

precision: fixing typo in previous 84f78d827d

Signed-off-by: Christoph Ruegg <git@cdrnet.ch>
pull/2/head
Christoph Ruegg 17 years ago
parent
commit
66bd45316e
  1. 4
      src/Numerics/Precision.cs

4
src/Numerics/Precision.cs

@ -265,7 +265,7 @@ namespace MathNet.Numerics
if (count < 0) if (count < 0)
{ {
Decrement(value, -count); return Decrement(value, -count);
} }
// Translate the bit pattern of the double to an integer. // Translate the bit pattern of the double to an integer.
@ -328,7 +328,7 @@ namespace MathNet.Numerics
if (count < 0) if (count < 0)
{ {
Decrement(value, -count); return Decrement(value, -count);
} }
// Translate the bit pattern of the double to an integer. // Translate the bit pattern of the double to an integer.

Loading…
Cancel
Save