Fixed typo.

This commit is contained in:
Michael Bayne
2011-07-05 09:02:16 -07:00
parent cbacc4ddac
commit b1c9545f04
+1 -1
View File
@@ -281,7 +281,7 @@ public class FloatMath
*/
public static float normal (float normal, float mean, float stddev)
{
return stddev*normal() + mean;
return stddev*normal + mean;
}
/**