diff --git a/docs.html b/docs.html
index b615c330..56443f84 100644
--- a/docs.html
+++ b/docs.html
@@ -10571,7 +10571,11 @@ See also:
form 4: for each row vector of A, raise each element to the power denoted by the corresponding element in row vector R;
the number of columns in A and R must be the same
-Caveat: for the matrix power operation, which takes into account matrix structure, use powmat()
+Caveats:
+
+- to raise all elements to the power 2, use square() instead
+- for the matrix power operation, which takes into account matrix structure, use powmat()
+
Examples:
@@ -10580,7 +10584,7 @@ Examples:
mat A(5, 6, fill::randu);
mat B(5, 6, fill::randu);
-mat X = pow(A, 2.34);
+mat X = pow(A, 3.45);
mat Y = pow(A, B);
vec C(5, fill::randu);