Fixed grammar in a comment.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403931
This commit is contained in:
Davis King 2010-12-02 03:49:48 +00:00
parent 0ec7feb2d9
commit 5faadcbfa5
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ namespace dlib
// now compute the actual cholesky decomposition
int info = lapack::potrf('L', L_);
// check if its really SPD
// check if it's really SPD
if (info == 0 && is_symmetric && min(abs(diag(L_))) > eps*100)
isspd = true;
else