diff --git a/docs.html b/docs.html
index d3b0762f..bd3d9694 100644
--- a/docs.html
+++ b/docs.html
@@ -720,16 +720,16 @@ Constructors:
fill::zeros | = | set all elements to 0 |
fill::ones | = | set all elements to 1 |
fill::eye | = | set the elements along the main diagonal to 1 and off-diagonal elements to 0 |
fill::randu | = | set each element to a random value from a uniform distribution in the [0,1] interval |
fill::randn | = | set each element to a random value from a normal/Gaussian distribution with zero mean and unit variance |
fill::eye | = | set the elements on the main diagonal to 1 and off-diagonal elements to 0 |
fill::randu | = | set all elements to random values from a uniform distribution in the [0,1] interval |
fill::randn | = | set all elements to random values from a normal/Gaussian distribution with zero mean and unit variance |
fill::none | = | do not initialise the elements |