diff --git a/src/Numerics/LinearAlgebra/Single/DenseVector.cs b/src/Numerics/LinearAlgebra/Single/DenseVector.cs
index 4beb651b..a796c6fa 100644
--- a/src/Numerics/LinearAlgebra/Single/DenseVector.cs
+++ b/src/Numerics/LinearAlgebra/Single/DenseVector.cs
@@ -675,10 +675,10 @@ namespace MathNet.Numerics.LinearAlgebra.Single
}
///
- /// Pointwise divide this vector with another vector and stores the result into the result vector.
+ /// Pointwise multiply this vector with another vector and stores the result into the result vector.
///
- /// The vector to pointwise divide this one by.
- /// The vector to store the result of the pointwise division.
+ /// The vector to pointwise multiply this one by.
+ /// The vector to store the result of the pointwise multiplication.
protected override void DoPointwiseMultiply(Vector other, Vector result)
{
var denseOther = other as DenseVector;