Remove trailing space.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1444500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-02-10 08:10:40 +00:00
parent 0b24467e5f
commit 81eddba084
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class UnitSphereRandomVectorGenerator
final double[] v = new double[dimension];
// See http://mathworld.wolfram.com/SpherePointPicking.html for example.
// Pick a point by choosing a standard Gaussian for each element, and then
// Pick a point by choosing a standard Gaussian for each element, and then
// normalizing to unit length.
double normSq = 0;
for (int i = 0; i < dimension; i++) {