diff --git a/docs.html b/docs.html
index 39ca4caa..b84f48b8 100644
--- a/docs.html
+++ b/docs.html
@@ -10500,6 +10500,10 @@ See also:
- Calculate the rank of matrix X, based on singular value decomposition
+- form 1: return the rank
+
+- form 2: store the calculated rank in r and return a bool indicating success
+
- Any singular values less than tolerance are treated as zero
-
@@ -10510,14 +10514,10 @@ The tolerance argument is optional; by default tolerance is max
-form 1: return the rank
-
-form 2: store the calculated rank in r and return a bool indicating success
-
If the calculation fails:
- r = rank(X) thows a std::runtime_error exception
-- rank(r,X) return a bool set to false (exception is not thrown)
+- rank(r,X) returns a bool set to false (exception is not thrown)