diff --git a/docs.html b/docs.html
index 893b8acf..3fd6f4eb 100644
--- a/docs.html
+++ b/docs.html
@@ -12556,9 +12556,9 @@ Inverse of general square matrix A
-inv_opts::tiny | | use fast inverse algorithm for tiny matrices (with size ≤ 4x4); may produce lower quality inverses |
-inv_opts::allow_approx | | allow approximate inverses for rank deficient or poorly conditioned matrices; similar to pseudo-inverse |
inv_opts::no_ugly | | do not provide inverses for poorly conditioned matrices (where rcond < datum::eps) |
+inv_opts::allow_approx | | provide approximate inverses for rank deficient or poorly conditioned matrices; similar to pseudo-inverse |
+inv_opts::tiny | | use fast inverse algorithm for tiny matrices (with size ≤ 4x4); may produce lower quality inverses |
@@ -12653,9 +12653,9 @@ Inverse of symmetric/hermitian positive definite matrix A
-inv_opts::tiny | | use fast inverse algorithm for tiny matrices (with size ≤ 4x4); may produce lower quality inverses |
-inv_opts::allow_approx | | allow approximate inverses for symmetric rank deficient or poorly conditioned matrices; similar to pseudo-inverse |
inv_opts::no_ugly | | do not provide inverses for poorly conditioned matrices (where rcond < datum::eps) |
+inv_opts::allow_approx | | provide approximate inverses for rank deficient or poorly conditioned symmetric matrices; similar to pseudo-inverse |
+inv_opts::tiny | | use fast inverse algorithm for tiny matrices (with size ≤ 4x4); may produce lower quality inverses |