diff --git a/docs.html b/docs.html
index 0b8e21f4..78d10132 100644
--- a/docs.html
+++ b/docs.html
@@ -8566,21 +8566,13 @@ See also:
cond( A )
--
-Return the condition number of matrix A (the ratio of the largest singular value to the smallest)
-
+- Return the condition number of matrix A (the ratio of the largest singular value to the smallest)
--
-Large condition numbers suggest that matrix A is nearly singular
-
+- The ideal condition number is close to 1; large condition numbers suggest that matrix A is nearly singular
--
-The computation is based on singular value decomposition; if the decomposition fails, a std::runtime_error exception is thrown
-
+- The computation is based on singular value decomposition; if the decomposition fails, a std::runtime_error exception is thrown
--
-Caveat: rcond() is considerably faster for providing an estimate of the reciprocal condition number
-
+- Caveat: rcond() is considerably faster for providing an estimate of the reciprocal condition number
-
Examples: