fix comment

This commit is contained in:
conrad
2021-03-10 16:06:15 +10:00
parent 938e3a6c96
commit 823761e043
+1 -1
View File
@@ -17,7 +17,7 @@ main(int argc, char** argv)
// directly specify the matrix size (by default, elements are not initialised)
mat A(2,3);
// explicit element initialisation during initialisation via one of:
// explicit element initialisation during construction via one of:
// fill::zeros, fill::ones, fill::eye, fill::randu, fill::randn
A = mat(2,3,fill::zeros);