From 60cd4255569e16feb48bc1f0887bac2450aa4f76 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Mon, 1 Sep 2008 11:42:08 +0000 Subject: [PATCH] typos git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@690941 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/math/linear/LUDecomposition.java | 2 +- src/java/org/apache/commons/math/linear/QRDecomposition.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/linear/LUDecomposition.java b/src/java/org/apache/commons/math/linear/LUDecomposition.java index de64375ad..d8dc2f6ba 100644 --- a/src/java/org/apache/commons/math/linear/LUDecomposition.java +++ b/src/java/org/apache/commons/math/linear/LUDecomposition.java @@ -18,7 +18,7 @@ package org.apache.commons.math.linear; /** - * An interface to classes that implement a algorithm to calculate the + * An interface to classes that implement an algorithm to calculate the * LU-decomposition of a real matrix. *

The LU-decomposition of matrix A is a set of three matrices: P, L and U * such that P×A = L×U. P is a rows permutation matrix that is used diff --git a/src/java/org/apache/commons/math/linear/QRDecomposition.java b/src/java/org/apache/commons/math/linear/QRDecomposition.java index 8d99a152d..c948520cb 100644 --- a/src/java/org/apache/commons/math/linear/QRDecomposition.java +++ b/src/java/org/apache/commons/math/linear/QRDecomposition.java @@ -18,7 +18,7 @@ package org.apache.commons.math.linear; /** - * An interface to classes that implement a algorithm to calculate the + * An interface to classes that implement an algorithm to calculate the * QR-decomposition of a real matrix. *

This interface is based on the class with similar name from the now defunct * JAMA library, with the