diff --git a/docs.html b/docs.html
index 49ec80f3..cdc9734a 100644
--- a/docs.html
+++ b/docs.html
@@ -18061,7 +18061,7 @@ Since Armadillo 12.6.2, the default RNG on all systems is the 64-bit version of
-Caveat: when using a framework such as OpenMP for multi-threading and the underlying system supports the thread_local storage specifier,
+Caveat: when using a multi-threading framework (such as OpenMP) and the underlying system supports the thread_local storage specifier,
the above functions change the seed only within the thread they are running on
@@ -18208,11 +18208,33 @@ log_a, log_b and log_c must have the same type
cx_double, cx_float
-
-cx_double is a shorthand / typedef for std::complex<double>
-
+Convenience short forms (typedefs) for complex element types:
--
-cx_float is a shorthand / typedef for std::complex<float>
+
+
+
+
+
+ cx_double
+ |
+
+ |
+
+ equivalent to std::complex<double>
+ |
+
+
+
+ cx_float
+ |
+
+ |
+
+ equivalent to std::complex<float>
+ |
+
+
+
-
@@ -18221,7 +18243,9 @@ Example:
cx_mat X(5, 5, fill::randu);
-X(1,2) = cx_double(2.0, 3.0);
+X(1,2) = cx_double(3.4, 5.6);
+
+cx_double val = X(2,3);