Skip to content
This repository has been archived by the owner on Jul 22, 2023. It is now read-only.

Commit

Permalink
Fix type in "en/Math/Eps-S"
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin committed Feb 22, 2015
1 parent 47d4a33 commit ab6d2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/Math/Eps-S.md
Expand Up @@ -20,7 +20,7 @@ The proper way to compare `double` numbers is comparing with some epsilon. An ex
```cs
public static void IsEqual(double a, double b, double eps = 1e-9)
{
return Math.Abs(a - b) < 1e-9;
return Math.Abs(a - b) < eps;
}
```

Expand Down

0 comments on commit ab6d2c6

Please sign in to comment.